Skip to content

Commit

Permalink
align one cast with R source
Browse files Browse the repository at this point in the history
  • Loading branch information
shikokuchuo committed Dec 3, 2023
1 parent ed60282 commit 7803a3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ static void nano_write_char(R_outpstream_t stream, int c) {
buf->buf = R_Realloc(buf->buf, buf->len, unsigned char);
}

buf->buf[buf->cur++] = (unsigned char) c;
buf->buf[buf->cur++] = (char) c;

}

Expand Down

0 comments on commit 7803a3a

Please sign in to comment.