mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-31 12:00:38 +00:00
Fixing a warning
This commit is contained in:
parent
244e6a0a4d
commit
d06cc6c2d1
1 changed files with 1 additions and 1 deletions
2
main.c
2
main.c
|
@ -264,7 +264,7 @@ int main(int argc, char **argv) {
|
|||
|
||||
if (items_elements) {
|
||||
printf("Mode: manual\n");
|
||||
printf("There are %i items to compile:\n", items_elements);
|
||||
printf("There are %lu items to compile:\n", (unsigned long)items_elements);
|
||||
for (itr = 0; itr < items_elements; ++itr) {
|
||||
printf(" item: %s (%s)\n",
|
||||
items_data[itr].filename,
|
||||
|
|
Loading…
Reference in a new issue