Fix Linux build warnings

This was SVN commit r7034.
This commit is contained in:
Ykkrosh
2009-07-25 20:35:48 +00:00
parent 6937137341
commit cd0554c6bc
6 changed files with 14 additions and 12 deletions
+1 -1
View File
@@ -645,7 +645,7 @@ static void InitJsTimers()
for(size_t i = 0; i < MAX_JS_TIMERS; i++)
{
const char* description = pos;
pos += sprintf(pos, "js_timer %d", i)+1;
pos += sprintf(pos, "js_timer %d", (int)i)+1;
timer_AddClient(&js_timer_clients[i], description);
}