Skip to content

Commit

Permalink
Fixed the error message in zpios (issue openzfs#2072)
Browse files Browse the repository at this point in the history
  • Loading branch information
sikevux committed Jan 24, 2014
1 parent 01b738f commit 8362297
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/zpios/zpios_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ run_region_sizes(cmd_args_t *args)
while (rc == 0 && get_next(&args->current_S, &args->S)) {
if (args->current_S < args->current_C) {
fprintf(stderr, "Error: in any run chunksize can "
"not be smaller than regionsize.\n");
"not be larger than regionsize.\n");
return (EINVAL);
}

Expand Down

0 comments on commit 8362297

Please sign in to comment.