mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-12 11:23:43 +08:00
(my_strftime): Be sure to use L_('x') for literals.
This commit is contained in:
parent
9d55b89d59
commit
cc4800dd1b
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user