2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-29 05:03:34 +08:00

test: fix printf specifier.

This commit is contained in:
whitequark 2016-10-16 23:54:29 +00:00
parent 2a9e370840
commit f10a4498c7

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;
}