From f341a4c9a32d2cd7e68ab84c8129b95e85642800 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 3 Jun 2014 23:22:38 -0700 Subject: [PATCH] Make arguments match the format string in test/default/pwhash_scrypt_ll.c ... --- test/default/pwhash_scrypt_ll.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/default/pwhash_scrypt_ll.c b/test/default/pwhash_scrypt_ll.c index 1adaa0e2..d8029fc3 100644 --- a/test/default/pwhash_scrypt_ll.c +++ b/test/default/pwhash_scrypt_ll.c @@ -1,4 +1,5 @@ #include +#include #include #define TEST_NAME "pwhash_scrypt_ll" @@ -50,7 +51,9 @@ void test_vector(uint8_t * password, uint8_t * salt, uint64_t N, uint32_t r, ui printf("%s", password); printf("', '"); printf("%s", salt); - printf("', %llu, %lu, %lu, %lu) =", N, r, p, olen); + printf("', %llu, %lu, %lu, %lu) =", + (unsigned long long) N, (unsigned long) r, (unsigned long) p, + (unsigned long) olen); printf("\n"); // Print test result