* eoLogger: replaced ssize_t to size_t fixing compatibility issue on Windows

This commit is contained in:
Caner Candan 2011-05-11 14:56:47 +02:00
commit 8341376247

View file

@ -173,7 +173,7 @@ int eoLogger::outbuf::overflow(int_type c)
{
if (_fd >= 0 && c != EOF)
{
ssize_t num;
size_t num;
num = ::write(_fd, &c, 1);
}
}