]> git.saurik.com Git - wxWidgets.git/commitdiff
Add cast
authorRobert Roebling <robert@roebling.de>
Sun, 12 Nov 2006 20:53:06 +0000 (20:53 +0000)
committerRobert Roebling <robert@roebling.de>
Sun, 12 Nov 2006 20:53:06 +0000 (20:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43367 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/unix/stackwalk.cpp

index 2e6a5ccda44596af6d83e5c444e28ef0eedc56a9..97612c94d12c28d4dc75ee167802b95f4e6398a6 100644 (file)
@@ -222,7 +222,7 @@ int wxStackWalker::InitFrames(wxStackFrame *arr, size_t n, void **addresses, cha
 
     // build the (long) command line for executing addr2line in an optimized way
     // (e.g. use always chars, even in Unicode build: popen() always takes chars)
 
     // build the (long) command line for executing addr2line in an optimized way
     // (e.g. use always chars, even in Unicode build: popen() always takes chars)
-    int len = snprintf(g_buf, BUFSIZE, "addr2line -C -f -e \"%s\"", exepath.mb_str());
+    int len = snprintf(g_buf, BUFSIZE, "addr2line -C -f -e \"%s\"", (const char*) exepath.mb_str());
     len = (len <= 0) ? strlen(g_buf) : len;     // in case snprintf() is broken
     for (size_t i=0; i<n; i++)
     {
     len = (len <= 0) ? strlen(g_buf) : len;     // in case snprintf() is broken
     for (size_t i=0; i<n; i++)
     {