aboutsummaryrefslogtreecommitdiff
path: root/src/processor/logging.cc
diff options
context:
space:
mode:
authormmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e>2008-02-25 19:32:00 +0000
committermmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e>2008-02-25 19:32:00 +0000
commitc27cf3e3959189f78fe2de40405987c3f33488ce (patch)
tree7014e194ce872f38e6dac38172d4d4292bc563c0 /src/processor/logging.cc
parentissue 238 - missing includes compiling with gcc 4.3. patch by taras glek, r=me (diff)
downloadbreakpad-c27cf3e3959189f78fe2de40405987c3f33488ce.tar.xz
Use "%" PRIx64 instead of "%llx" (#241). r=bryner
http://groups.google.com/group/google-breakpad-dev/browse_thread/thread/327dc5326077e48d git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@241 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/processor/logging.cc')
-rw-r--r--src/processor/logging.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/processor/logging.cc b/src/processor/logging.cc
index b96e4c78..8842df35 100644
--- a/src/processor/logging.cc
+++ b/src/processor/logging.cc
@@ -80,7 +80,7 @@ std::string HexString(u_int32_t number) {
std::string HexString(u_int64_t number) {
char buffer[19];
- snprintf(buffer, sizeof(buffer), "0x%llx", number);
+ snprintf(buffer, sizeof(buffer), "0x%" PRIx64, number);
return std::string(buffer);
}