test: fix printf specifier.

This commit is contained in:
whitequark 2016-10-16 23:54:29 +00:00
parent 2a9e370840
commit f10a4498c7
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ int64_t now = 0;
int watchdog_set(long long ms)
{
printf("watchdog_set %d\n", ms);
printf("watchdog_set %lld\n", ms);
return ms;
}