Skip to content

Commit

Permalink
fix print format, closes #5778 (#5779)
Browse files Browse the repository at this point in the history
  • Loading branch information
jangorecki authored Dec 2, 2023
1 parent f032dd1 commit cbb0d07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ijoin.c
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ SEXP overlaps(SEXP ux, SEXP imatches, SEXP multArg, SEXP typeArg, SEXP nomatchAr
++totlen;
}
break;
default: error(_("Internal error: unknown type in mult=ALL in overlaps: %d"), mult, type); // #nocov
default: error(_("Internal error: unknown type in mult=ALL in overlaps: %d"), type); // #nocov
}
} else totlen = rows;
end1 = clock() - start;
Expand Down

0 comments on commit cbb0d07

Please sign in to comment.