mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-06-01 17:42:30 +00:00
Cast isspace() and tolower() arguments to int to avoid warnings.
This commit is contained in:
parent
d4845db15c
commit
a3a9384eec
2 changed files with 3 additions and 3 deletions
|
@ -693,7 +693,7 @@ void SV_BeginDownload_f(void)
|
|||
char *p;
|
||||
|
||||
for (p = name; *p; p++)
|
||||
*p = (char)tolower(*p);
|
||||
*p = tolower((int)*p);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue