1
0
mirror of https://github.com/RPCS3/soundtouch.git synced 2024-11-09 20:33:03 +01:00

Changed fileno() to _fileno() to eliminate compiler warning

This commit is contained in:
oparviai 2010-12-12 18:15:06 +00:00
parent 16f0a95a30
commit ab0d353f6f

View File

@ -55,7 +55,7 @@ using namespace std;
#include <fcntl.h>
// Macro for Win32 standard input/output stream support: Sets a file stream into binary mode
#define SET_STREAM_TO_BIN_MODE(f) (_setmode(fileno(f), _O_BINARY))
#define SET_STREAM_TO_BIN_MODE(f) (_setmode(_fileno(f), _O_BINARY))
#else
// Not needed for GNU environment...
#define SET_STREAM_TO_BIN_MODE(f) {}