Skip to content

Commit

Permalink
change format to size_t
Browse files Browse the repository at this point in the history
  • Loading branch information
chivee committed Apr 19, 2016
1 parent 82f290f commit 46e8749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Readers/HTKMLFReader/utterancesourcemulti.h
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ class minibatchutterancesourcemulti : public minibatchsource
if (verbosity)
{
double pageintime = (double)pageintimer;
fprintf(stderr, "requiredata: %d utterances read, time usage = %.8g, total frames = %d, avg speed = %.8g(frames/sec). \n", (int)utteranceset.size(), pageintime ,totalframes, (double)totalframes /pageintime);
fprintf(stderr, "requiredata: %d utterances read, time usage = %.8g, total frames = %zu, avg speed = %.8g(frames/sec). \n", (int)utteranceset.size(), pageintime ,totalframes, (double)totalframes /pageintime);
}
}
catch (...)
Expand Down

0 comments on commit 46e8749

Please sign in to comment.