diff options
Diffstat (limited to 'sys/boot/pc98/boot2/io.c')
-rw-r--r-- | sys/boot/pc98/boot2/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/pc98/boot2/io.c b/sys/boot/pc98/boot2/io.c index 294de33..2f559d0 100644 --- a/sys/boot/pc98/boot2/io.c +++ b/sys/boot/pc98/boot2/io.c @@ -289,7 +289,7 @@ strcasecmp(const char *s1, const char *s2) void bcopy(const void *from, void *to, size_t len) { - char *fp = (char *)from; + const char *fp = (const char *)from; char *tp = (char *)to; while (len-- > 0) |