diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2007-07-02 15:16:40 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@xenon.tklauser.home> | 2007-07-02 15:16:40 +0200 |
commit | a86c62dd8c18d34b5a85efc5baa80224ce3cf4a4 (patch) | |
tree | bd0901f78789344ecc3d77ab70a88837e45562ba | |
parent | 86bad98403604f4738e8c252519755654f954eb0 (diff) |
inotail.c: Correct error message
These could also be bytes
-rw-r--r-- | inotail.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |