summaryrefslogtreecommitdiff
path: root/Tests/SystemInformation
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-11-12 09:33:00 -0500
committerBill Hoffman <bill.hoffman@kitware.com>2002-11-12 09:33:00 -0500
commit59d623dc66622e8d810ec4a403eecb87711bcfa3 (patch)
treeaa65edeed9ba9deb8539722b484f060be0706be5 /Tests/SystemInformation
parent56d4bba75979e53ab64c420f9f2af2fa179ec2cc (diff)
downloadcmake-59d623dc66622e8d810ec4a403eecb87711bcfa3.tar.gz
*** empty log message ***
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 ab45228092..bb5a64963c 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;