[Lldb-commits] [lldb] r207862 - Fix format string for 32bit systems.

Joerg Sonnenberger joerg at bec.de
Fri May 2 12:00:27 PDT 2014


Author: joerg
Date: Fri May  2 14:00:27 2014
New Revision: 207862

URL: http://llvm.org/viewvc/llvm-project?rev=207862&view=rev
Log:
Fix format string for 32bit systems.

Modified:
    lldb/trunk/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp

Modified: lldb/trunk/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp?rev=207862&r1=207861&r2=207862&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp (original)
+++ lldb/trunk/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp Fri May  2 14:00:27 2014
@@ -168,7 +168,7 @@ ProcessFreeBSD::DoResume()
     }
 
     if (log)
-        log->Printf("process %lu resuming (%s)", GetID(), do_step ? "step" : "continue");
+        log->Printf("process %" PRIu64 " resuming (%s)", GetID(), do_step ? "step" : "continue");
     if (do_step)
         m_monitor->SingleStep(GetID(), m_resume_signo);
     else





More information about the lldb-commits mailing list