use correct acessors for unsigned type

This commit is contained in:
Vincent Sanders 2013-05-27 18:39:51 +01:00
parent 63d7247a9c
commit 2d70714a64
1 changed files with 2 additions and 2 deletions

View File

@ -1227,8 +1227,8 @@ static void html_reformat(struct content *c, int width, int height)
time_taken = wallclock() - time_before;
c->reformat_time = wallclock() +
((time_taken * 3 < nsoption_int(min_reflow_period) ?
nsoption_int(min_reflow_period) : time_taken * 3));
((time_taken * 3 < nsoption_uint(min_reflow_period) ?
nsoption_uint(min_reflow_period) : time_taken * 3));
}