Files
docker/windows-base/qt-5.15.18-qcollectiongenerator.patch
T
2026-05-06 21:01:18 +03:00

12 lines
419 B
Diff

--- 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;