Skip to content

Commit

Permalink
Tidied format specifier from %lld to %d in rbindlist error message, #…
Browse files Browse the repository at this point in the history
  • Loading branch information
mattdowle committed Nov 9, 2017
1 parent 18790e0 commit 72e3658
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rbindlist.c
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ SEXP rbindlist(SEXP l, SEXP sexp_usenames, SEXP sexp_fill, SEXP idcol) {
return(R_NilValue);
}
if (data.n_rows > INT32_MAX) {
error("Total rows in the list is %lld which is larger than the maximum number of rows, currently %lld",
error("Total rows in the list is %lld which is larger than the maximum number of rows, currently %d",
(long long)data.n_rows, INT32_MAX);
}
if (isidcol) {
Expand Down

0 comments on commit 72e3658

Please sign in to comment.