Add missing argument for tprintf

The format string expects 3 int arguments.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
Stefan Weil 2016-03-17 06:23:30 +01:00 committed by Zdenko Podobný
parent 2b8f137c8c
commit 3bad589431

View File

@ -459,7 +459,7 @@ bool WERD_RES::StatesAllValid() {
WERD_CHOICE* choice = it.data();
if (choice->TotalOfStates() != ratings_dim) {
tprintf("Cooked #%d has total of states = %d vs ratings dim of %d\n",
choice->TotalOfStates(), ratings_dim);
index, choice->TotalOfStates(), ratings_dim);
return false;
}
}