mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Fix the type when converting set of everything to string.
This commit is contained in:
parent
c76231ca30
commit
39920a4ea7
1 changed files with 1 additions and 1 deletions
|
@ -566,7 +566,7 @@ set_as_string (const set_t *set)
|
|||
return str->str;
|
||||
}
|
||||
if (set_is_everything (set)) {
|
||||
dstring_copystr (str, "[everythign]");
|
||||
dstring_copystr (str, "[everything]");
|
||||
return str->str;
|
||||
}
|
||||
for (i = 0; i < set->size; i++) {
|
||||
|
|
Loading…
Reference in a new issue