* eoLogger: replaced ssize_t to size_t fixing compatibility issue on Windows
This commit is contained in:
parent
f27b5149ee
commit
8341376247
1 changed files with 1 additions and 1 deletions
|
|
@ -173,7 +173,7 @@ int eoLogger::outbuf::overflow(int_type c)
|
||||||
{
|
{
|
||||||
if (_fd >= 0 && c != EOF)
|
if (_fd >= 0 && c != EOF)
|
||||||
{
|
{
|
||||||
ssize_t num;
|
size_t num;
|
||||||
num = ::write(_fd, &c, 1);
|
num = ::write(_fd, &c, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Reference in a new issue