diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-11-12 09:33:00 -0500 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-11-12 09:33:00 -0500 |
commit | 59d623dc66622e8d810ec4a403eecb87711bcfa3 (patch) | |
tree | aa65edeed9ba9deb8539722b484f060be0706be5 /Tests/SystemInformation | |
parent | 56d4bba75979e53ab64c420f9f2af2fa179ec2cc (diff) | |
download | cmake-59d623dc66622e8d810ec4a403eecb87711bcfa3.tar.gz |
*** empty log message ***
Diffstat (limited to 'Tests/SystemInformation')
-rw-r--r-- | Tests/SystemInformation/DumpInformation.cxx | 6 |
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; |