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:
a51a972
)
Actually, the 64bit format specifier differs between SIXTY_FOUR_BIT and
author
Richard Levitte
<levitte@openssl.org>
Wed, 29 Jun 2005 18:48:08 +0000
(18:48 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Wed, 29 Jun 2005 18:48:08 +0000
(18:48 +0000)
SIXTY_FOUR_BIT_LONG
crypto/pqueue/pq_compat.h
patch
|
blob
|
history
diff --git
a/crypto/pqueue/pq_compat.h
b/crypto/pqueue/pq_compat.h
index 904b0d09a2d5c2a93a958ff5d30d0ecf2ba18e5a..1bc12c42b3758deeb0798cb73d7d4fb302de5977 100644
(file)
--- a/
crypto/pqueue/pq_compat.h
+++ b/
crypto/pqueue/pq_compat.h
@@
-109,7
+109,10
@@
#define PQ_64BIT_IS_INTEGER 1
#define PQ_64BIT_IS_BIGNUM 0
-#if defined(SIXTY_FOUR_BIT) || defined(SIXTY_FOUR_BIT_LONG)
+#if defined(SIXTY_FOUR_BIT)
+#define PQ_64BIT BN_ULONG
+#define PQ_64BIT_PRINT "%lld"
+#elif defined(SIXTY_FOUR_BIT_LONG)
#define PQ_64BIT BN_ULONG
#define PQ_64BIT_PRINT "%ld"
#elif defined(THIRTY_TWO_BIT)