From b32497da23c7572e5c1da8a8008275ac50f17752 Mon Sep 17 00:00:00 2001 From: Romain Goyet Date: Wed, 16 Sep 2020 12:04:56 -0400 Subject: [PATCH] [ion/simulator] Remove a useless printf --- ion/src/simulator/shared/state_file.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/ion/src/simulator/shared/state_file.cpp b/ion/src/simulator/shared/state_file.cpp index 509c452cd..35e36c8fc 100644 --- a/ion/src/simulator/shared/state_file.cpp +++ b/ion/src/simulator/shared/state_file.cpp @@ -22,7 +22,6 @@ static inline bool load(FILE * f) { if (fread(buffer, sHeaderLength, 1, f) != 1) { return false; } - printf("READ\n"); if (strcmp(buffer, sHeader) != 0) { return false; }