summaryrefslogtreecommitdiffstats
path: root/Source/cmFileCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-01-03 14:40:38 (GMT)
committerBrad King <brad.king@kitware.com>2008-01-03 14:40:38 (GMT)
commitc61a3b6fe9580687458fc9687174a1acce4edf77 (patch)
treebe9df1fe5601cbc502c2a50a647281bc873dce51 /Source/cmFileCommand.cxx
parent45a4ddd85cab461711ecefc663296a984f88fb25 (diff)
downloadCMake-c61a3b6fe9580687458fc9687174a1acce4edf77.zip
CMake-c61a3b6fe9580687458fc9687174a1acce4edf77.tar.gz
CMake-c61a3b6fe9580687458fc9687174a1acce4edf77.tar.bz2
STYLE: Fix line-too-long.
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r--Source/cmFileCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx
index 90d2d1d..3f93b8d 100644
--- a/Source/cmFileCommand.cxx
+++ b/Source/cmFileCommand.cxx
@@ -233,7 +233,7 @@ bool cmFileCommand::HandleReadCommand(std::vector<std::string> const& args)
// Open the specified file.
#if defined(_WIN32) || defined(__CYGWIN__)
std::ifstream file(fileName.c_str(), std::ios::in |
- (hexOutputArg.IsEnabled() ? std::ios::binary : std::ios::in));
+ (hexOutputArg.IsEnabled() ? std::ios::binary : std::ios::in));
#else
std::ifstream file(fileName.c_str(), std::ios::in);
#endif