diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-12-14 22:51:31 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-12-14 22:51:31 +0100 |
| commit | 6a3c56c1312a98ce2cf04ca72c5c4889a93070b3 (patch) | |
| tree | 852c43cbf5ac4bc394c812b5b6c8270a802ec491 /src/core.c | |
| parent | d03c85da9045a67e178c98d94b607cc3cd8d22c0 (diff) | |
| download | box64-6a3c56c1312a98ce2cf04ca72c5c4889a93070b3.tar.gz box64-6a3c56c1312a98ce2cf04ca72c5c4889a93070b3.zip | |
[BOX32][WRAPPER] More fixes to libc and libX11 wrapping
Diffstat (limited to 'src/core.c')
| -rw-r--r-- | src/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.c b/src/core.c index 54df1e67..3cc5caec 100644 --- a/src/core.c +++ b/src/core.c @@ -2263,7 +2263,7 @@ int initialize(int argc, const char **argv, char** env, x64emu_t** emulator, elf } // check if file exist if(!my_context->argv[0] || !FileExist(my_context->argv[0], IS_FILE)) { - printf_log(LOG_NONE, "Error: File is not found. (check BOX64_PATH)\n"); + printf_log(LOG_NONE, "Error: File is not found. (%s)\n", my_context->argv[0]); free_contextargv(); FreeBox64Context(&my_context); FreeCollection(&ld_preload); |