summaryrefslogtreecommitdiffstats
path: root/Tests/SystemInformation
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/SystemInformation')
-rw-r--r--Tests/SystemInformation/DumpInformation.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/Tests/SystemInformation/DumpInformation.cxx b/Tests/SystemInformation/DumpInformation.cxx
index ab45228..bb5a649 100644
--- a/Tests/SystemInformation/DumpInformation.cxx
+++ b/Tests/SystemInformation/DumpInformation.cxx
@@ -11,7 +11,11 @@ int main(int, char*[])
}
while(!feof(file))
{
- putc(fgetc(file), stdout);
+ int ch = fgetc(file);
+ if(ch != EOF)
+ {
+ putc(ch, stdout);
+ }
}
fclose(file);
return 0;