Skip to content

Commit

Permalink
cast pointers to standard type for printf
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelChirico authored Dec 4, 2023
1 parent 5061828 commit b8fc729
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/assign.c
Original file line number Diff line number Diff line change
Expand Up @@ -1197,7 +1197,7 @@ static R_len_t *savedtl=NULL, nalloc=0, nsaved=0;

void savetl_init(void) {
if (nsaved || nalloc || saveds || savedtl) {
error(_("Internal error: savetl_init checks failed (%d %d %p %p). please report to data.table issue tracker."), nsaved, nalloc, saveds, savedtl); // # nocov
error(_("Internal error: savetl_init checks failed (%d %d %p %p). please report to data.table issue tracker."), nsaved, nalloc, (void *)saveds, (void *)savedtl); // # nocov
}
nsaved = 0;
nalloc = 100;
Expand Down

0 comments on commit b8fc729

Please sign in to comment.