maint: fix minor whitespace issues
authorPádraig Brady <P@draigBrady.com>
Wed, 11 Jan 2012 15:29:18 +0000 (15:29 +0000)
committerPádraig Brady <P@draigBrady.com>
Wed, 11 Jan 2012 15:32:09 +0000 (15:32 +0000)
The previous commit introduced a couple of spacing issues,
luckily one of which caused a test to fail.

* src/stat.c (default_format): Add a space so times are aligned.
* src/tr.c (string2_extentd): Remove an extraneous space.

src/stat.c
src/tr.c

index 8254ccc..9ae2d5a 100644 (file)
@@ -1307,7 +1307,7 @@ default_format (bool fs, bool terse, bool device)
                               _("Access: %x\n"
                                 "Modify: %y\n"
                                 "Change: %z\n"
-                                "Birth: %w\n"));
+                                " Birth: %w\n"));
           free (temp);
         }
     }
index 329d814..bc410aa 100644 (file)
--- a/src/tr.c
+++ b/src/tr.c
@@ -1417,7 +1417,7 @@ string2_extend (const struct Spec_list *s1, struct Spec_list *s2)
          That's not portable however, contradicts POSIX and is dependent
          on your collating sequence.  */
       error (EXIT_FAILURE, 0,
-             _("when translating with string1 longer than string2,\nthe \
+             _("when translating with string1 longer than string2,\nthe\
  latter string must not end with a character class"));
       abort (); /* inform gcc that the above use of error never returns. */
       break;