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

crypto/pqueue/pq_compat.h

index 904b0d09a2d5c2a93a958ff5d30d0ecf2ba18e5a..1bc12c42b3758deeb0798cb73d7d4fb302de5977 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)