This commit is contained in:
2026-05-06 15:43:21 +03:00
parent e614572c4f
commit 6fa00a63d3
7 changed files with 55 additions and 2 deletions
@@ -0,0 +1,11 @@
--- main.c 2025-03-30 14:49:56.000000000 +0300
+++ main.c.new 2026-05-06 15:35:17.502272400 +0300
@@ -98,7 +98,7 @@
argv[0] = newPath;
#ifdef _WIN32
- const intptr_t ret = _spawnvp(_P_WAIT, newPath, argv);
+ const intptr_t ret = _spawnvp(_P_WAIT, newPath, (const char * const*)argv);
if (ret == -1) {
fprintf(stderr, "Error while executing \"%s\" tool.\n", newPath);
return 3;