From: Bodo Möller Date: Fri, 19 May 2000 12:02:49 +0000 (+0000) Subject: Add required cast. X-Git-Tag: OpenSSL_0_9_5~15 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d9586857d645cd70bbf8e1b14b8d56dfa39a16a9;p=oweals%2Fopenssl.git Add required cast. --- diff --git a/apps/rand.c b/apps/rand.c index cfbba30755..fa9bc023f4 100644 --- a/apps/rand.c +++ b/apps/rand.c @@ -62,7 +62,7 @@ int MAIN(int argc, char **argv) else badopt = 1; } - else if (isdigit(argv[i][0])) + else if (isdigit((unsigned char)argv[i][0])) { if (num < 0) {