summaryrefslogtreecommitdiffstats
path: root/Source/cmFileCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-12-21 14:41:09 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2015-12-21 14:41:09 (GMT)
commita53e0168c344111de301ad67498ad89862b58cdf (patch)
treee5e70a3996ab12fa3b374197b2a65a08ff2fe504 /Source/cmFileCommand.cxx
parent3768a79c232dc2456b9e9b70da6582b0eb1e78f1 (diff)
parenta5dd0c9d427d66f7e361b0aa714a0a41b65ae4f0 (diff)
downloadCMake-a53e0168c344111de301ad67498ad89862b58cdf.zip
CMake-a53e0168c344111de301ad67498ad89862b58cdf.tar.gz
CMake-a53e0168c344111de301ad67498ad89862b58cdf.tar.bz2
Merge topic 'import-kwiml'
a5dd0c9d Add option to use a system-installed KWIML 036b6ef7 Port CMake from cmIML to KWIML 12293371 Merge branch 'upstream-KWIML' into import-kwiml 3fdbb0a8 KWIML 2015-12-09 (43f9f8d0) 55b21d07 Add script to update KWIML from upstream c7d9a249 Utilities/KWIML: Drop sources to make room for fresh import
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r--Source/cmFileCommand.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx
index df95d9d..b3557f9 100644
--- a/Source/cmFileCommand.cxx
+++ b/Source/cmFileCommand.cxx
@@ -2811,8 +2811,8 @@ namespace {
case CURLINFO_SSL_DATA_OUT:
{
char buf[128];
- int n = sprintf(buf, "[%" cmIML_INT_PRIu64 " bytes data]\n",
- static_cast<cmIML_INT_uint64_t>(size));
+ int n = sprintf(buf, "[%" KWIML_INT_PRIu64 " bytes data]\n",
+ static_cast<KWIML_INT_uint64_t>(size));
if (n > 0)
{
vec->insert(vec->end(), buf, buf + n);