From 519b61a7a99828f82f4dcab8ce605fb5573bc02b Mon Sep 17 00:00:00 2001 From: Alex Groce Date: Fri, 27 Jul 2018 21:14:54 -0700 Subject: [PATCH] Proper print format --- src/lib/DeepState.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/DeepState.c b/src/lib/DeepState.c index b8a49da..7598a02 100644 --- a/src/lib/DeepState.c +++ b/src/lib/DeepState.c @@ -549,7 +549,7 @@ extern int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { return 0; // Just ignore any too-big inputs } - printf("LLVM fuzzing with input of size %u\n", Size); + printf("LLVM fuzzing with input of size %ul\n", Size); struct DeepState_TestInfo *test = NULL;