Skip to content

Commit

Permalink
fix format specifier type
Browse files Browse the repository at this point in the history
  • Loading branch information
coolbutuseless committed Mar 15, 2024
1 parent a23d34b commit a9c249d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ndjson-serialize.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ SEXP serialize_list_to_ndjson_file_(SEXP robj_, SEXP filename_, SEXP serialize_o
yyjson_write_err err;
bool res = yyjson_mut_write_fp(file, doc, opt.yyjson_write_flag, NULL, &err);
if (!res) {
error("Error writing to file at element %i\n", idx);
error("Error writing to file at element %ld\n", idx);
}
fputc('\n', file);

Expand Down

0 comments on commit a9c249d

Please sign in to comment.