]> de.git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Merge pull request #177 from xonotic/terencehill/warning_removal
authorDale Weiler <graphitemaster@users.noreply.github.com>
Sun, 26 Nov 2017 22:30:42 +0000 (17:30 -0500)
committerGitHub <noreply@github.com>
Sun, 26 Nov 2017 22:30:42 +0000 (17:30 -0500)
Get rid of a warning on Windows

util.cpp

index ead50dda137a18e3e5ae67b85601a34d9cf867f7..fa18d04c9857ceba78c7cbfbd3e1ad6e09e6d24b 100644 (file)
--- a/util.cpp
+++ b/util.cpp
@@ -670,6 +670,7 @@ bool util_isatty(FILE *file) {
 }
 #else
 bool util_isatty(FILE *file) {
+    (void)file;
     return false;
 }
 #endif