diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-07-20 12:36:16 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-07-20 12:36:16 (GMT) |
commit | 55303d6dd27678dd1446f3836b0292053f856a4c (patch) | |
tree | 283dcb3c55acb9b2dce333ba6656aeb251a175d0 /Source/cmHexFileConverter.cxx | |
parent | 38084147e1edec3ce70f4f3574b9114b12646613 (diff) | |
download | CMake-55303d6dd27678dd1446f3836b0292053f856a4c.zip CMake-55303d6dd27678dd1446f3836b0292053f856a4c.tar.gz CMake-55303d6dd27678dd1446f3836b0292053f856a4c.tar.bz2 |
STYLE: fix line lengths
Alex
Diffstat (limited to 'Source/cmHexFileConverter.cxx')
-rw-r--r-- | Source/cmHexFileConverter.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmHexFileConverter.cxx b/Source/cmHexFileConverter.cxx index bf27383..6c89d82 100644 --- a/Source/cmHexFileConverter.cxx +++ b/Source/cmHexFileConverter.cxx @@ -153,7 +153,8 @@ static bool ConvertIntelHexLine(const char* buf, FILE* outFile) dataStart = 9; } // ignore extra address records - else if ((buf[8] == '2') || (buf[8] == '3') || (buf[8] == '4') || (buf[8] == '5')) + else if ((buf[8] == '2') || (buf[8] == '3') || (buf[8] == '4') + || (buf[8] == '5')) { return true; } |