Mercurial > dillo
changeset 4623:c449be1f747f
merge
author | corvid |
---|---|
date | Mo, 04 Jul 2016 14:04:49 +0000 |
parents | 8ab62e98ae78 (current diff) a0615094111d (diff) |
children | 3bc54a04e255 |
files | |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/IO/IO.c Mo Jul 04 01:51:02 2016 +0000 +++ b/src/IO/IO.c Mo Jul 04 14:04:49 2016 +0000 @@ -189,7 +189,7 @@ break; } else { io->Status = errno; - MSG("READ Failed with %d: %s\n", St, strerror(errno)); + MSG("READ Failed with %d: %s\n", (int)St, strerror(errno)); break; } } @@ -244,7 +244,7 @@ break; } else { io->Status = errno; - MSG("WRITE Failed with %d: %s\n", St, strerror(errno)); + MSG("WRITE Failed with %d: %s\n", (int)St, strerror(errno)); break; } }