Fixing typo in an error message.
authorviric <viriketo@gmail.com>
Mon, 06 Feb 2012 23:22:57 +0100
changeset 313 19f22c06343b
parent 312 d5a6a7231d7f
child 314 d137a7b333ce
Fixing typo in an error message.
tail.c
--- a/tail.c	Sat Nov 19 10:30:16 2011 +0100
+++ b/tail.c	Mon Feb 06 23:22:57 2012 +0100
@@ -123,7 +123,7 @@
     fd = open(fname, O_RDONLY);
 
     if (fd == -1)
-        tail_error("Error: Cannot open the outut file");
+        tail_error("Error: cannot open the output file");
 
     if (last_lines >= 0)
         seek_at_last_lines(fd, last_lines);