Update from HEAD
[oweals/openssl.git] / crypto / pqueue / pqueue.c
index 6ec5c6756cc83f0e528da285e0b89269801e09e8..5cc18527f8da8f1e80084ebb4c41b69ff7a061c9 100644 (file)
@@ -199,7 +199,7 @@ pqueue_find(pqueue_s *pq, PQ_64BIT priority)
        return found;
        }
 
-#if !(defined(OPENSSL_SYS_VMS) || defined(VMS_TEST))
+#if PQ_64BIT_IS_INTEGER
 void
 pqueue_print(pqueue_s *pq)
        {
@@ -207,7 +207,7 @@ pqueue_print(pqueue_s *pq)
 
        while(item != NULL)
                {
-               printf("item\t%lld\n", item->priority);
+               printf("item\t" PQ_64BIT_PRINT "\n", item->priority);
                item = item->next;
                }
        }