Merge pull request #177 from xonotic/terencehill/warning_removal

Get rid of a warning on Windows
This commit is contained in:
Dale Weiler 2017-11-26 17:30:42 -05:00 committed by GitHub
commit 679e3771de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -670,6 +670,7 @@ bool util_isatty(FILE *file) {
}
#else
bool util_isatty(FILE *file) {
(void)file;
return false;
}
#endif