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
parent 8dab5975d4
commit fe11c19bf3

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