[Lldb-commits] [PATCH] D69455: Correct size_t format specifier

Benjamin Kramer via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Sat Oct 26 01:44:55 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rG5e307808557f: Correct size_t format specifier (authored by scw, committed by bkramer).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D69455/new/

https://reviews.llvm.org/D69455

Files:
  lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp


Index: lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
===================================================================
--- lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
+++ lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
@@ -1257,7 +1257,7 @@
     oneliner += "(frame, bp_loc, internal_dict)";
   } else {
     error.SetErrorStringWithFormat("expected 3 or 4 argument "
-                                   "function, %s has %d",
+                                   "function, %s has %zu",
                                    function_name, num_args);
     return error;
   }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D69455.226535.patch
Type: text/x-patch
Size: 656 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20191026/0e51d674/attachment-0001.bin>


More information about the lldb-commits mailing list