Indentation fixes.

This commit is contained in:
Markus Armbruster 2005-03-12 15:05:23 +00:00
parent d8daa5f67d
commit 0595ff4d4e

View file

@ -140,14 +140,14 @@ info(void)
if (fp == NULL) { if (fp == NULL) {
pr("Error reading info file for %s\n", name); pr("Error reading info file for %s\n", name);
logerror("Cannot open for \"%s\" info file (%s)", logerror("Cannot open for \"%s\" info file (%s)",
filename, strerror(errno)); filename, strerror(errno));
return RET_FAIL; return RET_FAIL;
} }
} }
if (fstat(fileno(fp), &statb) < 0) { if (fstat(fileno(fp), &statb) < 0) {
pr("Error reading info file for %s\n", name); pr("Error reading info file for %s\n", name);
logerror("Cannot fstat for \"%s\" info file (%s)", logerror("Cannot fstat for \"%s\" info file (%s)",
filename, strerror(errno)); filename, strerror(errno));
fclose(fp); fclose(fp);
return RET_SYS; return RET_SYS;
} }
@ -369,7 +369,7 @@ info(void)
if (fp == NULL) { if (fp == NULL) {
pr("Error reading info file for %s\n", name); pr("Error reading info file for %s\n", name);
logerror("Cannot open for \"%s\" info file (%s)", logerror("Cannot open for \"%s\" info file (%s)",
filename, strerror(errno)); filename, strerror(errno));
return RET_FAIL; return RET_FAIL;
} }
} }