summaryrefslogtreecommitdiff
path: root/src/pld
diff options
context:
space:
mode:
Diffstat (limited to 'src/pld')
-rw-r--r--src/pld/pld.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pld/pld.c b/src/pld/pld.c
index 8b3b1ac3..6da105b3 100644
--- a/src/pld/pld.c
+++ b/src/pld/pld.c
@@ -189,9 +189,9 @@ int handle_pld_load_command(struct command_context_s *cmd_ctx, char *cmd, char *
gettimeofday(&end, NULL);
timeval_subtract(&duration, &end, &start);
- command_print(cmd_ctx, "loaded file %s to pld device %lu in %lis %lius",
+ command_print(cmd_ctx, "loaded file %s to pld device %lu in %jis %jius",
args[1], strtoul(args[0], NULL, 0),
- duration.tv_sec, duration.tv_usec);
+ (intmax_t)duration.tv_sec, (intmax_t)duration.tv_usec);
}
return ERROR_OK;