added type casts

This commit is contained in:
netp
2012-08-07 03:40:06 +00:00
parent 2f21b3e352
commit 6bac1f18bc
5 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -1317,7 +1317,7 @@ int main(
current_seconds = time(NULL);
/* Has at least one second passed ? */
if (current_seconds != last_seconds) {
tsm_timer_milliseconds(((current_seconds - last_seconds) * 1000));
tsm_timer_milliseconds((uint16_t)((current_seconds - last_seconds) * 1000));
}
/* OK to proceed; see what we are up to now */