Skip to content

Commit

Permalink
fix format cast
Browse files Browse the repository at this point in the history
  • Loading branch information
s-u committed Nov 30, 2023
1 parent 4b3cc79 commit eac3690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/split_df_fw.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ SEXP df_split_fw(SEXP s, SEXP sColWidths, SEXP sNamesSep,
while (l < le) {
if ((le - l) < width[i]) { /* not enough in the line to process next column */
if (resilient) break;
Rf_error("line %lu: input line is too short (need %u, have %u)", k, width[i], (le - l));
Rf_error("line %lu: input line is too short (need %u, have %u)", (unsigned long) k, (unsigned) width[i], (unsigned) (le - l));
}

if (c) c += width[i];
Expand Down

0 comments on commit eac3690

Please sign in to comment.