Add missing argument for tprintf

The format string expects an int arguments.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
Stefan Weil 2016-03-17 06:59:22 +01:00 committed by Zdenko Podobný
parent 950fdea9f7
commit fc650382cd

View File

@ -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;
}