diff options
author | David Cole <david.cole@kitware.com> | 2012-12-05 13:14:56 -0500 |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2012-12-05 13:19:09 -0500 |
commit | 354ecc1e1f28b9f2412fa015064353c6e20cfe92 (patch) | |
tree | e5f63be8b5c672e7206a629a8e453897b68b710b /Source/cmFileCommand.cxx | |
parent | d842d9062297435747117bd74b6e184cedd345cc (diff) | |
download | cmake-354ecc1e1f28b9f2412fa015064353c6e20cfe92.tar.gz |
CMake: Fix dashboard warnings
...in the new file and string TIMESTAMP sub-commands
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r-- | Source/cmFileCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 42df3a17fd..0cdbb82d7f 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -3263,7 +3263,7 @@ bool cmFileCommand::HandleTimestampCommand( return false; } - int argsIndex = 1; + unsigned int argsIndex = 1; const std::string& filename = args[argsIndex++]; |