summaryrefslogtreecommitdiffstats
path: root/mbbsd/admin.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/admin.c')
-rw-r--r--mbbsd/admin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/admin.c b/mbbsd/admin.c
index f115bf46..de40efe1 100644
--- a/mbbsd/admin.c
+++ b/mbbsd/admin.c
@@ -1012,7 +1012,7 @@ auto_scan(char fdata[][STRLEN], char ans[])
}
}
for (i = 0; fdata[5][i]; i++) {
- if (isdigit(fdata[5][i]))
+ if (isdigit((int)fdata[5][i]))
count++;
}
@@ -1196,7 +1196,7 @@ scan_register_form(char *regfile, int automode, int neednum)
fp = fopen(buf1, "w");
for(i = 0; buf[i] && i < sizeof(buf); i++){
- if (!isdigit(buf[i]))
+ if (!isdigit((int)buf[i]))
continue;
fprintf(fp, "[°h¦^­ì¦]] ½Ð%s\n",
reason[buf[i] - '0']);