Skip to content

Commit

Permalink
Update check-INTEGER.c
Browse files Browse the repository at this point in the history
Fix editing typo
  • Loading branch information
mouse07410 authored Mar 31, 2024
1 parent 60a9e53 commit 6bf76c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tests-skeletons/check-INTEGER.c
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ check_strtoimax() {
char positive_max[32];
char negative_min[32];
const int len_pmax = snprintf(positive_max, sizeof(positive_max),
"jd", intmax_max);
"%jd", intmax_max);
const int len_nmin = snprintf(negative_min, sizeof(negative_min),
"%jd", intmax_min);
assert(len_pmax < (int)sizeof(positive_max));
Expand Down

0 comments on commit 6bf76c7

Please sign in to comment.