]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
textual: remove inconsistent periods from two error messages
authorBenno Schulenberg <bensberg@justemail.net>
Mon, 6 Feb 2012 15:04:33 +0000 (16:04 +0100)
committerKarel Zak <kzak@redhat.com>
Fri, 25 Jan 2013 10:47:27 +0000 (11:47 +0100)
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
sys-utils/fstrim.c
text-utils/col.c

index 332601df70fa94a343328b744c771b1b4a3f5c22..d3e446bd8fcf3ea865b0fdec38198a1e535b0ec1 100644 (file)
@@ -123,7 +123,7 @@ int main(int argc, char **argv)
        }
 
        if (optind == argc)
-               errx(EXIT_FAILURE, _("no mountpoint specified."));
+               errx(EXIT_FAILURE, _("no mountpoint specified"));
 
        path = argv[optind++];
 
index f309fa2315ac28b61bcfb0708dbf6378518621fa..4ad36fbebda423028018ece87f5a3fe6bd05787b 100644 (file)
@@ -141,7 +141,7 @@ static void __attribute__((__noreturn__)) usage(FILE *out)
 
 static void __attribute__((__noreturn__)) wrerr(void)
 {
-       errx(EXIT_FAILURE, _("write error."));
+       errx(EXIT_FAILURE, _("write error"));
 }
 
 int main(int argc, char **argv)