From cc4800dd1b02fb20f752da11af2bcdcbbf9a0c97 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 14 Sep 2005 16:10:38 +0000 Subject: [PATCH] (my_strftime): Be sure to use L_('x') for literals. --- lib/strftime.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/strftime.c b/lib/strftime.c index 932166eaf..0f338206e 100644 --- a/lib/strftime.c +++ b/lib/strftime.c @@ -647,9 +647,9 @@ my_strftime (CHAR_T *s, size_t maxsize, const CHAR_T *format, not before, so we accept %9:z, not %:9z. */ { const CHAR_T *q; - for (q = f; *q == ':' && q - f < 3; q++) + for (q = f; *q == L_(':') && q - f < 3; q++) ; /* empty */ - if (*q == 'z') + if (*q == L_('z')) { colons = q - f; f = q;