mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
fix incompatable pointer type
This commit is contained in:
parent
9113ea6fd4
commit
34f98e5a88
1 changed files with 1 additions and 1 deletions
|
@ -217,7 +217,7 @@ preprocess_file (const char *filename)
|
|||
puts("");
|
||||
}
|
||||
|
||||
status = spawnvp (_P_WAIT, cpp_argv[0], (char **)cpp_argv);
|
||||
status = spawnvp (_P_WAIT, cpp_argv[0], (const char **)cpp_argv);
|
||||
|
||||
if (status) {
|
||||
fprintf (stderr, "%s: cpp returned error code %d\n",
|
||||
|
|
Loading…
Reference in a new issue