This commit is contained in:
jcarsey 2010-01-12 19:04:06 +00:00
parent 70575d12a9
commit d54744cd6c
1 changed files with 5 additions and 1 deletions

View File

@ -1073,7 +1073,11 @@ FileHandleEof(
return (FALSE); return (FALSE);
} }
RetVal = (Pos == Info->FileSize)?TRUE:FALSE; if (Pos == Info->FileSize) {
RetVal = TRUE;
} else {
RetVal = FALSE;
}
FreePool (Info); FreePool (Info);