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:
cc4cba7
)
Actually, the 64bit format specifier differs between SIXTY_FOUR_BIT and
author
Richard Levitte
<levitte@openssl.org>
Wed, 29 Jun 2005 18:48:12 +0000
(18:48 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Wed, 29 Jun 2005 18:48:12 +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 e7c46d5aa1293489a1f08e180ac5586aa3002006..28c58a0261d95d784a2414f39d9c9ca9cc671137 100644
(file)
--- a/
crypto/pqueue/pq_compat.h
+++ b/
crypto/pqueue/pq_compat.h
@@
-108,7
+108,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)