summaryrefslogtreecommitdiff
path: root/src/IO/IO.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/IO/IO.c')
-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;
}
}