[Lldb-commits] [lldb] r142663 - /lldb/trunk/test/api/check_public_api_headers/main.cpp.template

Johnny Chen johnny.chen at apple.com
Fri Oct 21 10:57:04 PDT 2011


Author: johnny
Date: Fri Oct 21 12:57:04 2011
New Revision: 142663

URL: http://llvm.org/viewvc/llvm-project?rev=142663&view=rev
Log:
Fix the compilation warning while running the test case.

Modified:
    lldb/trunk/test/api/check_public_api_headers/main.cpp.template

Modified: lldb/trunk/test/api/check_public_api_headers/main.cpp.template
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/api/check_public_api_headers/main.cpp.template?rev=142663&r1=142662&r2=142663&view=diff
==============================================================================
--- lldb/trunk/test/api/check_public_api_headers/main.cpp.template (original)
+++ lldb/trunk/test/api/check_public_api_headers/main.cpp.template Fri Oct 21 12:57:04 2011
@@ -17,7 +17,7 @@
     SBDebugger::Initialize();
     SBDebugger dbg = SBDebugger::Create();
 
-    printf("Hello SBDebugger %d\n", dbg.GetID()); // Set breakpoint here.
+    printf("Hello SBDebugger %llu\n", dbg.GetID()); // Set breakpoint here.
 
     SBDebugger::Terminate();
     return 0;





More information about the lldb-commits mailing list