summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2007-07-02 15:16:40 +0200
committerTobias Klauser <tklauser@xenon.tklauser.home>2007-07-02 15:16:40 +0200
commita86c62dd8c18d34b5a85efc5baa80224ce3cf4a4 (patch)
treebd0901f78789344ecc3d77ab70a88837e45562ba
parent86bad98403604f4738e8c252519755654f954eb0 (diff)
inotail.c: Correct error message
These could also be bytes
-rw-r--r--inotail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/inotail.c b/inotail.c
index 8fcf9fd..89e213c 100644
--- a/inotail.c
+++ b/inotail.c
@@ -478,7 +478,7 @@ int main(int argc, char **argv)
optarg++;
if (!is_digit(*optarg)) {
- fprintf(stderr, "Invalid number of lines: %s\n", optarg);
+ fprintf(stderr, "Error: Invalid number of units: %s\n", optarg);
exit(EXIT_FAILURE);
}
n_units = strtoul(optarg, NULL, 0);