From 069bd76c9ddf6c37e2a24633f38fa21d26ca42e3 Mon Sep 17 00:00:00 2001 From: Meep-Eep Date: Thu, 8 Oct 2009 20:06:13 +0000 Subject: [PATCH] Documentation fix; whitespace. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3206 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/libs/file/dirs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sc2/src/sc2code/libs/file/dirs.c b/sc2/src/sc2code/libs/file/dirs.c index 16548b3d5..2fe61e358 100644 --- a/sc2/src/sc2code/libs/file/dirs.c +++ b/sc2/src/sc2code/libs/file/dirs.c @@ -267,7 +267,7 @@ getHomeDir (void) // EP_SINGLESEP - Replace multiple consecutive path seperators (which POSIX // considers equivalent to a single one) by a single one. // Additionally, there's EP_ALL, which indicates all of the above, -// and EP_SYSTEM_ALL, which does the same as EP_ALL, with the exception +// and EP_ALL_SYSTEM, which does the same as EP_ALL, with the exception // of EP_SLASHES, which will only be included if the operating system // accepts backslashes as path terminators. // Returns 0 on success. @@ -547,7 +547,7 @@ expandPath (char *dest, size_t len, const char *src, int what) pathStart = dest; #ifdef HAVE_DRIVE_LETTERS - if (isDriveLetter(pathStart[0]) && (pathStart[1] == ':')) + if (isDriveLetter (pathStart[0]) && (pathStart[1] == ':')) { pathStart += 2; }