diff options
-rw-r--r-- | src/pld/pld.c | 4 | ||||
-rw-r--r-- | src/xsvf/xsvf.c | 2 |
2 files changed, 3 insertions, 3 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; diff --git a/src/xsvf/xsvf.c b/src/xsvf/xsvf.c index 2400ae39..a9317d3e 100644 --- a/src/xsvf/xsvf.c +++ b/src/xsvf/xsvf.c @@ -1021,7 +1021,7 @@ static int handle_xsvf_command(struct command_context_s *cmd_ctx, char *cmd, cha if (unsupported) { command_print(cmd_ctx, - "unsupported xsvf command: 0x%02X in xsvf file at offset %ld, aborting", + "unsupported xsvf command: 0x%02X in xsvf file at offset %jd, aborting", uc, lseek(xsvf_fd, 0, SEEK_CUR)-1 ); return ERROR_FAIL; } |