From a86c62dd8c18d34b5a85efc5baa80224ce3cf4a4 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Mon, 2 Jul 2007 15:16:40 +0200 Subject: inotail.c: Correct error message These could also be bytes --- inotail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'inotail.c') 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); -- cgit v1.2.3-54-g00ecf