From d860121ebca4bb25918a37c1c2a7fb0251a6cb48 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sat, 25 Feb 2017 21:01:52 +0100 Subject: [PATCH] Fix previous --- test/default/pwhash_scrypt_ll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/default/pwhash_scrypt_ll.c b/test/default/pwhash_scrypt_ll.c index eea63d45..c2b3f3c1 100644 --- a/test/default/pwhash_scrypt_ll.c +++ b/test/default/pwhash_scrypt_ll.c @@ -43,7 +43,7 @@ tv(const char *passwd, const char *salt, uint64_t N, uint32_t r, uint32_t p) (unsigned long) olen); for (i = 0; i < olen; i++) { - printf("%02x%c", data[i], line_items < line_itemsLimit ? ' ' : '\n'); + printf("%02x%c", data[i], line_items < 15 ? ' ' : '\n'); line_items = line_items < 15 ? line_items + 1 : 0; } }