Get rid of a warning on Windows

This commit is contained in:
terencehill 2017-06-23 16:21:22 +02:00
parent 163c4b99a4
commit 27c0886ffb

View file

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