Skip to content

Commit

Permalink
Remove warning
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaskunz committed Jul 13, 2021
1 parent 158ac1e commit 09a56d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/flinkwd.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ int main(int argc, char* argv[]) {
// Calculate the counter value for the given timeout
uint64_t div = (uint64_t)base_clk * time / 1000;
if(div > (uint64_t)0xffffffff) {
fprintf(stderr, "Timeout value too high! (counter = 0x%lx)\n", div);
fprintf(stderr, "Timeout value too high! (counter = 0x%llx)\n", div);
return EPARAM;
}
counter = (uint32_t)div;
Expand Down

0 comments on commit 09a56d5

Please sign in to comment.