Formatting fix.

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3218 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
Meep-Eep
2009-10-09 22:24:42 +00:00
parent af49118ff9
commit f4399708ba
+2 -2
View File
@@ -547,7 +547,7 @@ expandPath (char *dest, size_t len, const char *src, int what)
pathStart = dest; pathStart = dest;
#ifdef HAVE_DRIVE_LETTERS #ifdef HAVE_DRIVE_LETTERS
if (isDriveLetter (pathStart[0]) && (pathStart[1] == ':')) if (isDriveLetter(pathStart[0]) && (pathStart[1] == ':'))
{ {
pathStart += 2; pathStart += 2;
} }
@@ -711,7 +711,7 @@ expandPathAbsolute (char *dest, size_t destLen, const char *src,
// in between the existance check and the call to _getdcwd() // in between the existance check and the call to _getdcwd()
// cannot be avoided, unless a drive still exists for Windows // cannot be avoided, unless a drive still exists for Windows
// when the physical drive is removed. // when the physical drive is removed.
if (!driveLetterExists(letter)) if (!driveLetterExists (letter))
{ {
errno = ENOENT; errno = ENOENT;
return NULL; return NULL;