diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-08-05 19:20:48 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-08-05 19:20:48 (GMT) |
commit | 2799e2c66bbed3aa41d3292ee8d2c2353bd6d3ab (patch) | |
tree | 025aa2362f784d2786043add9a316598a906a301 /Tests/SystemInformation | |
parent | 59d886d0f4822aecd7744ce06a47438dc9a09046 (diff) | |
download | CMake-2799e2c66bbed3aa41d3292ee8d2c2353bd6d3ab.zip CMake-2799e2c66bbed3aa41d3292ee8d2c2353bd6d3ab.tar.gz CMake-2799e2c66bbed3aa41d3292ee8d2c2353bd6d3ab.tar.bz2 |
BUG: Open as ascii to remove extra new lines
Diffstat (limited to 'Tests/SystemInformation')
-rw-r--r-- | Tests/SystemInformation/DumpInformation.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/SystemInformation/DumpInformation.cxx b/Tests/SystemInformation/DumpInformation.cxx index 30ae400..1c24721 100644 --- a/Tests/SystemInformation/DumpInformation.cxx +++ b/Tests/SystemInformation/DumpInformation.cxx @@ -14,7 +14,7 @@ void cmDumpInformationPrintFile(const char* name, FILE* fout) return; } - FILE* fin = fopen(name, "rb"); + FILE* fin = fopen(name, "r"); if(fin) { fprintf(fout, |