From fc650382cd9b20aee873410995cacf0c3a80f2ce Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Thu, 17 Mar 2016 06:59:22 +0100 Subject: [PATCH] Add missing argument for tprintf The format string expects an int arguments. Signed-off-by: Stefan Weil --- dict/dict.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dict/dict.cpp b/dict/dict.cpp index e59b00d5..d3797375 100644 --- a/dict/dict.cpp +++ b/dict/dict.cpp @@ -478,7 +478,8 @@ int Dict::def_letter_is_okay(void* void_dawg_args, dawg_args->permuter = curr_perm; } if (dawg_debug_level >= 2) { - tprintf("Returning %d for permuter code for this character.\n"); + tprintf("Returning %d for permuter code for this character.\n", + dawg_args->permuter); } return dawg_args->permuter; }