projects
/
openssl.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Add required cast.
[openssl.git]
/
apps
/
rand.c
diff --git
a/apps/rand.c
b/apps/rand.c
index
cfbba30
..
fa9bc02
100644
(file)
--- 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)
{