Actually, the 64bit format specifier differs between SIXTY_FOUR_BIT and
authorRichard Levitte <levitte@openssl.org>
Wed, 29 Jun 2005 18:48:12 +0000 (18:48 +0000)
committerRichard Levitte <levitte@openssl.org>
Wed, 29 Jun 2005 18:48:12 +0000 (18:48 +0000)
SIXTY_FOUR_BIT_LONG

crypto/pqueue/pq_compat.h

index e7c46d5aa1293489a1f08e180ac5586aa3002006..28c58a0261d95d784a2414f39d9c9ca9cc671137 100644 (file)
 #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)