about summary refs log tree commit diff stats
path: root/src/os/backtrace.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/os/backtrace.c')
-rw-r--r--src/os/backtrace.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/os/backtrace.c b/src/os/backtrace.c
index f0345cd6..2d1261d9 100644
--- a/src/os/backtrace.c
+++ b/src/os/backtrace.c
@@ -34,8 +34,10 @@ void ShowNativeBT(int log_minimum)
         for (int j = 0; j < nptrs; j++)
             printf_log(log_minimum, "NativeBT: %s\n", strings[j]);
         free(strings);
-    } else
-        printf_log(log_minimum, "NativeBT: none (%d/%s)\n", errno, strerror(errno));
+    } else {
+        for (int j = 0; j < nptrs; j++)
+            printf_log(log_minimum, "NativeBT: %p\n", buffer[j]);
+    }
     // restore modified name
     memcpy(my_context->box64path, my_context->orig_argv[0], boxpath_lenth);
 }