diff options
author | Bodo Möller <bodo@openssl.org> | 2000-05-19 12:02:49 +0000 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2000-05-19 12:02:49 +0000 |
commit | d9586857d645cd70bbf8e1b14b8d56dfa39a16a9 (patch) | |
tree | a511190d907ae3994b5d1b6c03e8f321729a9ef2 /apps | |
parent | c95b7a723f467d32b69b54e368fc666860fcc270 (diff) | |
download | openssl-new-d9586857d645cd70bbf8e1b14b8d56dfa39a16a9.tar.gz |
Add required cast.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/rand.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |