Fix up use of SafeFOpen.

This commit is contained in:
Andreas Schuh 2014-03-17 21:27:01 +00:00
parent 6b7be9a00a
commit e31f179ae0

View file

@ -997,7 +997,7 @@ static string ReadFileIntoString(const char* filename) {
char buffer[kBufSize];
string s;
FILE* fp;
if ((errno = SafeFOpen(&fp, filename, "r") != 0)) PFATAL(filename);
if ((errno = SafeFOpen(&fp, filename, "r")) != 0) PFATAL(filename);
size_t n;
while ( (n=fread(buffer, 1, kBufSize, fp)) > 0 ) {
if (ferror(fp)) PFATAL(filename);