Skip to content

Commit

Permalink
rtl: fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
f00b4r0 committed Aug 1, 2024
1 parent 4ce37bd commit 9cecbdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtl.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ int initRtl(char **argv, int optind)
optind++;

if (R.rateMult > RTLMULTMAX) {
fprintf(stderr, "rateMult can't be larger than 360\n");
fprintf(stderr, "rateMult can't be larger than %d\n", RTLMULTMAX);
return 1;
}

Expand Down

0 comments on commit 9cecbdd

Please sign in to comment.