diff options
author | Jose <jose@zeroc.com> | 2015-07-21 21:10:33 +0000 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-07-22 14:43:42 +0000 |
commit | 5f3455ec2ebf162ba6a0de1172b24215e308322d (patch) | |
tree | 806c301f0a862c82b798d6ab43be0f69a8957fec /cpp/src/IcePatch2Lib/Util.cpp | |
parent | Fix for Abstrac class generated constructor (diff) | |
download | ice-5f3455ec2ebf162ba6a0de1172b24215e308322d.tar.bz2 ice-5f3455ec2ebf162ba6a0de1172b24215e308322d.tar.xz ice-5f3455ec2ebf162ba6a0de1172b24215e308322d.zip |
Fix Ice::Log string format used with Visual Studio
Diffstat (limited to 'cpp/src/IcePatch2Lib/Util.cpp')
-rw-r--r-- | cpp/src/IcePatch2Lib/Util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IcePatch2Lib/Util.cpp b/cpp/src/IcePatch2Lib/Util.cpp index b0512e0b1aa..fac682a94f6 100644 --- a/cpp/src/IcePatch2Lib/Util.cpp +++ b/cpp/src/IcePatch2Lib/Util.cpp @@ -82,7 +82,7 @@ IcePatch2Internal::toLargeFileInfo(const FileInfo& info) bool IcePatch2Internal::writeFileInfo(FILE* fp, const LargeFileInfo& info) { - int rc = fprintf(fp, "%s\t%s\t%" ICE_INT64_FORMAT "d\t%d\n", + int rc = fprintf(fp, "%s\t%s\t" ICE_INT64_FORMAT "\t%d\n", IceUtilInternal::escapeString(info.path, "").c_str(), bytesToString(info.checksum).c_str(), info.size, |