diff options
Diffstat (limited to 'elf/dl-printf.c')
-rw-r--r-- | elf/dl-printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/dl-printf.c b/elf/dl-printf.c index d3264ba96c..429d2e80c2 100644 --- a/elf/dl-printf.c +++ b/elf/dl-printf.c @@ -113,7 +113,7 @@ _dl_debug_vdprintf (int fd, int tag_p, const char *fmt, va_list arg) /* Recognize the l modifier. It is only important on some platforms where long and int have a different size. We can use the same code for size_t. */ - if (*fmt == 'l' || *fmt == 'Z') + if (*fmt == 'l' || *fmt == 'z') { #if LONG_MAX != INT_MAX long_mod = 1; |