Skip to content

Commit

Permalink
Fix errors in Github CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
ibireme committed Aug 25, 2024
1 parent 8c5544d commit af67c57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/yyjson.c
Original file line number Diff line number Diff line change
Expand Up @@ -7258,7 +7258,7 @@ static_inline u8 *write_u32_len_1_to_9(u32 val, u8 *buf) {
if (val >= 100000000) {
u32 hi = val / 10000000;
val = val - hi * 10000000;
*buf++ = (u8)hi + (u8)'0';
*buf++ = (u8)(hi + '0');
}
return write_u32_len_1_to_8((u32)val, buf);
}
Expand Down

0 comments on commit af67c57

Please sign in to comment.