summaryrefslogtreecommitdiffstats
path: root/usr.bin/doscmd/dos.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/doscmd/dos.c')
-rw-r--r--usr.bin/doscmd/dos.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/doscmd/dos.c b/usr.bin/doscmd/dos.c
index 5c6904b..975c3b8 100644
--- a/usr.bin/doscmd/dos.c
+++ b/usr.bin/doscmd/dos.c
@@ -309,9 +309,9 @@ static u_char magic[0x7e] = {
0x0f, 0x0f, 0x0f, 0x0f, 0x04, 0x0f,
};
-#define isvalid(x) ((magic[x] & 0x01) != 0)
-#define issep(x) ((magic[x] & 0x02) == 0)
-#define iswhite(x) ((magic[x] & 0x04) == 0)
+#define isvalid(x) ((magic[(int)(x)] & 0x01) != 0)
+#define issep(x) ((magic[(int)(x)] & 0x02) == 0)
+#define iswhite(x) ((magic[(int)(x)] & 0x04) == 0)
static char *
skipwhite(char *p)
@@ -2429,7 +2429,7 @@ static struct intfunc_table int21_table [] = {
static int int21_fastlookup[256];
-char *dos_return[] = {
+const char *dos_return[] = {
"OK",
"FUNC_NUM_IVALID",
"FILE_NOT_FOUND",
OpenPOWER on IntegriCloud