Skip to content

Commit

Permalink
no need to output int64_t in format string.
Browse files Browse the repository at this point in the history
  • Loading branch information
GorgonMeducer committed Jan 23, 2024
1 parent 1e5377c commit 1dbdf7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions perf_counter.h
Original file line number Diff line number Diff line change
Expand Up @@ -359,8 +359,8 @@ __asm(".global __ensure_systick_wrapper\n\t");
__perf_counter_printf__( \
"--------------------------------------------\r\n"); \
__perf_counter_printf__( \
__STR " total cycle count: %lld [%016llx]\r\n", \
_, _); \
__STR " total cycle count: %ld [%016lx]\r\n", \
(long)_, (long)_); \
} else { \
__VA_ARGS__ \
}; \
Expand Down

0 comments on commit 1dbdf7a

Please sign in to comment.