Skip to content

Commit

Permalink
Add missing argument for tprintf
Browse files Browse the repository at this point in the history
The format string expects an int arguments.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
  • Loading branch information
stweil committed Mar 17, 2016
1 parent 1bc83fc commit e6c0d26
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dict/dict.cpp
Expand Up @@ -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;
}
Expand Down

0 comments on commit e6c0d26

Please sign in to comment.