Formatting changes to comply with 78 chars line width

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1293 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
gewlitys
2003-12-04 14:04:04 +00:00
parent 4e74536a12
commit fbb8e3db38
+4 -4
View File
@@ -263,8 +263,8 @@ uio_getStdioAccess(uio_DirHandle *dir, const char *path, int flags,
res = uio_getFileLocation(newDir, name, flags, &mountHandle, &newPath);
if (res == -1) {
int savedErrno = errno;
fprintf(stderr, "Error: uio_getStdioAccess: Could not get location of temporary "
"dir: %s.\n", strerror(errno));
fprintf(stderr, "Error: uio_getStdioAccess: Could not get location "
"of temporary dir: %s.\n", strerror(errno));
uio_closeDir(newDir);
uio_free(tempDirName);
errno = savedErrno;
@@ -274,8 +274,8 @@ uio_getStdioAccess(uio_DirHandle *dir, const char *path, int flags,
fsID = uio_getMountFileSystemType(mountHandle);
if (fsID != uio_FSTYPE_STDIO) {
// Temp dir isn't on a stdio fs either.
fprintf(stderr, "Error: uio_getStdioAccess: Temporary file location isn't on a "
"stdio filesystem.\n");
fprintf(stderr, "Error: uio_getStdioAccess: Temporary file location "
"isn't on a stdio filesystem.\n");
uio_closeDir(newDir);
uio_free(tempDirName);
uio_free(newPath);