mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
remove redundant cast
This commit is contained in:
parent
c31c97a6d9
commit
1ddd7da5ec
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], (const char **)cpp_argv);
|
||||
status = spawnvp (_P_WAIT, cpp_argv[0], cpp_argv);
|
||||
|
||||
if (status) {
|
||||
fprintf (stderr, "%s: cpp returned error code %d\n",
|
||||
|
|
Loading…
Reference in a new issue