From 57818a56776cfa3171c314f39b39b082d1487190 Mon Sep 17 00:00:00 2001 From: Myria Date: Sat, 26 Dec 2015 11:45:54 -0800 Subject: [PATCH] keysize is unsigned. --- ctrtool/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctrtool/utils.c b/ctrtool/utils.c index fe12a62..92125e5 100644 --- a/ctrtool/utils.c +++ b/ctrtool/utils.c @@ -136,7 +136,7 @@ void readkeyfile(u8* key, const char* keyfname) if (keysize != 16) { - fprintf(stdout, "Error key size mismatch, got %"PRId64", expected %d\n", keysize, 16); + fprintf(stdout, "Error key size mismatch, got %"PRIu64", expected %d\n", keysize, 16); goto clean; }