projects
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
c95b7a7
)
Add required cast.
author
Bodo Möller
<bodo@openssl.org>
Fri, 19 May 2000 12:02:49 +0000
(12:02 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Fri, 19 May 2000 12:02:49 +0000
(12:02 +0000)
apps/rand.c
patch
|
blob
|
history
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)
{