mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-03-22 10:41:43 +00:00
Converting a literal to null pointer produces a warning
This commit is contained in:
parent
a371c4ee27
commit
fa7d44e0c7
1 changed files with 1 additions and 1 deletions
2
test.c
2
test.c
|
@ -85,7 +85,7 @@ static fs_file_t **task_popen(const char *command, const char *mode) {
|
|||
while (*line != '\0' && *line != ' ' &&
|
||||
*line != '\t' && *line != '\n') line++;
|
||||
}
|
||||
vec_push(argv, '\0');
|
||||
vec_push(argv, (char *)0);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue