aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJorge Arellano Cid <jcid@dillo.org>2016-07-03 19:52:12 -0400
committerJorge Arellano Cid <jcid@dillo.org>2016-07-03 19:52:12 -0400
commitcd02ae0553135a742802532f3cbefba4513ed5cb (patch)
tree8e42f469d610507a250ed084f244742354f6643c /src
parentdc0280859b8aea3c571f746471891c42d44050b5 (diff)
Fixed a couple of compiler warnings for IO.c
Diffstat (limited to 'src')
-rw-r--r--src/IO/IO.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/IO/IO.c b/src/IO/IO.c
index 3a2c0332..333ec185 100644
--- a/src/IO/IO.c
+++ b/src/IO/IO.c
@@ -189,7 +189,7 @@ static bool_t IO_read(IOData_t *io)
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 @@ static bool_t IO_write(IOData_t *io)
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;
}
}