]> git.proxmox.com Git - mirror_edk2.git/blobdiff - ShellPkg/Library/BaseFileHandleLib/BaseFileHandleLib.c
add blank line
[mirror_edk2.git] / ShellPkg / Library / BaseFileHandleLib / BaseFileHandleLib.c
index 4b2ffb9d95787a2d74f30d04d4090079de7f7741..7063ec092bdbf161ae284f2376749e3ccbf4beea 100644 (file)
@@ -1073,9 +1073,13 @@ FileHandleEof(
     return (FALSE);\r
   } \r
 \r
-  RetVal = (Pos == Info->FileSize)?TRUE:FALSE;\r
+  if (Pos == Info->FileSize) {\r
+    RetVal = TRUE;\r
+  } else {\r
+    RetVal = FALSE;\r
+  }\r
 \r
   FreePool (Info);\r
 \r
   return (RetVal);\r
-}
\ No newline at end of file
+}\r