mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-03-01 03:06:31 +00:00
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
This commit is contained in:
@@ -345,7 +345,7 @@ static unsigned int CountCallerFrames() {
|
||||
frame_index < stack.frames()->size();
|
||||
++frame_index) {
|
||||
StackFrame *frame = stack.frames()->at(frame_index);
|
||||
printf("frame %-3d instruction = 0x%08llx",
|
||||
printf("frame %-3d instruction = 0x%08" PRIx64,
|
||||
frame_index, frame->instruction);
|
||||
#if defined(__i386__)
|
||||
StackFrameX86 *frame_x86 = reinterpret_cast<StackFrameX86*>(frame);
|
||||
|
||||
Reference in New Issue
Block a user