projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0ecedec
)
cryptlib.c: sscanf warning.
author
Andy Polyakov
<appro@openssl.org>
Sun, 15 Jan 2012 17:13:57 +0000
(17:13 +0000)
committer
Andy Polyakov
<appro@openssl.org>
Sun, 15 Jan 2012 17:13:57 +0000
(17:13 +0000)
crypto/cryptlib.c
patch
|
blob
|
history
diff --git
a/crypto/cryptlib.c
b/crypto/cryptlib.c
index ec8abdce9aeaa5e8dca3b1637bec898385d406f7..2341b7b112617f3dce89e9bf592614dd2d478075 100644
(file)
--- a/
crypto/cryptlib.c
+++ b/
crypto/cryptlib.c
@@
-149,7
+149,7
@@
void OPENSSL_cpuid_setup(void)
#if defined(_WIN32)
if (!sscanf(env+off,"%I64i",&vec)) vec = strtoul(env+off,NULL,0);
#else
- if (!sscanf(env+off,"%lli",&vec)) vec = strtoul(env+off,NULL,0);
+ if (!sscanf(env+off,"%lli",
(long long *)
&vec)) vec = strtoul(env+off,NULL,0);
#endif
if (off) vec = OPENSSL_ia32_cpuid()&~vec;
}