[Cmake-commits] [cmake-commits] david.cole committed cmHexFileConverter.cxx 1.6 1.7

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Sep 30 11:42:45 EDT 2009


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv21250/Source

Modified Files:
	cmHexFileConverter.cxx 
Log Message:
Fix warnings in CMake source code.


Index: cmHexFileConverter.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmHexFileConverter.cxx,v
retrieving revision 1.6
retrieving revision 1.7
diff -C 2 -d -r1.6 -r1.7
*** cmHexFileConverter.cxx	28 Sep 2009 15:42:45 -0000	1.6
--- cmHexFileConverter.cxx	30 Sep 2009 15:42:40 -0000	1.7
***************
*** 64,68 ****
        break;
        }
!     outBuf[outBufCount] = convertedByte & 0xff;
      outBufCount++;
      }
--- 64,68 ----
        break;
        }
!     outBuf[outBufCount] = static_cast<char>(convertedByte & 0xff);
      outBufCount++;
      }



More information about the Cmake-commits mailing list