Skip to content

Commit

Permalink
Clarify error message
Browse files Browse the repository at this point in the history
  • Loading branch information
DerrickWood committed Mar 5, 2015
1 parent 6f4ebee commit 47b7c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/db_shrink.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ void parse_command_line(int argc, char **argv) {
case 'n' :
sig = atoll(optarg);
if (sig < 1)
errx(EX_USAGE, "output count cannot be negative");
errx(EX_USAGE, "output count must be positive");
Output_count = sig;
break;
case 'd' :
Expand Down

0 comments on commit 47b7c86

Please sign in to comment.