From f4399708baee835a6bcfbf258f4c566e38845273 Mon Sep 17 00:00:00 2001 From: Meep-Eep Date: Fri, 9 Oct 2009 22:24:42 +0000 Subject: [PATCH] Formatting fix. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3218 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/libs/file/dirs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sc2/src/libs/file/dirs.c b/sc2/src/libs/file/dirs.c index 2fe61e358..6cfed2a33 100644 --- a/sc2/src/libs/file/dirs.c +++ b/sc2/src/libs/file/dirs.c @@ -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; } @@ -711,7 +711,7 @@ expandPathAbsolute (char *dest, size_t destLen, const char *src, // in between the existance check and the call to _getdcwd() // cannot be avoided, unless a drive still exists for Windows // when the physical drive is removed. - if (!driveLetterExists(letter)) + if (!driveLetterExists (letter)) { errno = ENOENT; return NULL;