Skip to content

Commit

Permalink
FIX: warning: format specifies type
Browse files Browse the repository at this point in the history
  • Loading branch information
Oldes committed Dec 15, 2022
1 parent bda36af commit e8a0f78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/os/host-ext-test.c
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ RXIEXT int RX_Call(int cmd, RXIFRM *frm, void *ctx) {
REBSER *blk = RXA_SERIES(frm, 1);
REBCNT n, type;
RXIARG val;
printf("\nBlock with %llu values:\n", RL_SERIES(blk, RXI_SER_TAIL));
printf("\nBlock with %lu values:\n", RL_SERIES(blk, RXI_SER_TAIL));
for(n = 0; (type = RL_GET_VALUE(blk, n, &val)); n++) {
if(type == RXT_END) break;
printf("\t%i -> %i\n", n, type);
Expand Down

0 comments on commit e8a0f78

Please sign in to comment.