Skip to content

Commit e6c0d26

Browse files
committed
Add missing argument for tprintf
The format string expects an int arguments. Signed-off-by: Stefan Weil <[email protected]>
1 parent 1bc83fc commit e6c0d26

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dict/dict.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,8 @@ int Dict::def_letter_is_okay(void* void_dawg_args,
478478
dawg_args->permuter = curr_perm;
479479
}
480480
if (dawg_debug_level >= 2) {
481-
tprintf("Returning %d for permuter code for this character.\n");
481+
tprintf("Returning %d for permuter code for this character.\n",
482+
dawg_args->permuter);
482483
}
483484
return dawg_args->permuter;
484485
}

0 commit comments

Comments
 (0)