Skip to content

Commit 1cdb288

Browse files
authored
Merge pull request #238 from Dennis40816/pr
Fix incorrect `do_size` argument usage
2 parents 122aea9 + a6e59e8 commit 1cdb288

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qtest.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ static bool do_size(int argc, char *argv[])
544544
bool ok = true;
545545
if (argc == 2) {
546546
if (!get_int(argv[1], &reps))
547-
report(1, "Invalid number of calls to size '%s'", argv[2]);
547+
report(1, "Invalid number of calls to size '%s'", argv[1]);
548548
}
549549

550550
int cnt = 0;

0 commit comments

Comments
 (0)