From f10a4498c7ff8e39a39ad51eea45b21b45e22563 Mon Sep 17 00:00:00 2001 From: whitequark Date: Sun, 16 Oct 2016 23:54:29 +0000 Subject: [PATCH] test: fix printf specifier. --- artiq/test/libartiq_support/artiq_time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/test/libartiq_support/artiq_time.c b/artiq/test/libartiq_support/artiq_time.c index 07c81c9ac..18de56424 100644 --- a/artiq/test/libartiq_support/artiq_time.c +++ b/artiq/test/libartiq_support/artiq_time.c @@ -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; }