about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.c b/src/core.c
index 0d5b0367..c42de333 100644
--- a/src/core.c
+++ b/src/core.c
@@ -1175,7 +1175,7 @@ int initialize(int argc, const char **argv, char** env, x64emu_t** emulator, elf
                 newenv[nenv] = "BOX32_PERSONA32BITS=1";
                 // re-launch...
                 if(execve(argv[0], (void*)argv, newenv)<0)
-                    printf_log(LOG_NONE, "Failed to relaunch. Error is %d/%s\n", errno, strerror(errno));
+                    printf_log(LOG_NONE, "Failed to relaunch. Error is %d/%s (argv[0]=\"%s\")\n", errno, strerror(errno), argv[0]);
             }
         }
     }