forked from M-Labs/artiq
test: fix printf specifier.
This commit is contained in:
parent
2a9e370840
commit
f10a4498c7
|
@ -5,7 +5,7 @@ int64_t now = 0;
|
||||||
|
|
||||||
int watchdog_set(long long ms)
|
int watchdog_set(long long ms)
|
||||||
{
|
{
|
||||||
printf("watchdog_set %d\n", ms);
|
printf("watchdog_set %lld\n", ms);
|
||||||
return ms;
|
return ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue