]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/ia64/fpu/printf_fphex.c
stdio-common: Convert vfprintf and related functions to buffers
[thirdparty/glibc.git] / sysdeps / ia64 / fpu / printf_fphex.c
index e7c3109510ae07a80c57082ff57aa8360273d1e5..91347b7e3d6be809f07cf92751bc96821145df13 100644 (file)
@@ -35,16 +35,10 @@ do {                                                                              \
                                                                              \
       numstr = _itoa_word (num, numbuf + sizeof numbuf, 16,                  \
                           info->spec == 'A');                                \
-      wnumstr = _itowa_word (num,                                            \
-                            wnumbuf + sizeof (wnumbuf) / sizeof (wchar_t),   \
-                            16, info->spec == 'A');                          \
                                                                              \
       /* Fill with zeroes.  */                                               \
       while (numstr > numbuf + (sizeof numbuf - 64 / 4))                     \
-       {                                                                     \
-         *--numstr = '0';                                                    \
-         *--wnumstr = L'0';                                                  \
-       }                                                                     \
+       *--numstr = '0';                                                      \
                                                                              \
       /* We use a full nibble for the leading digit.  */                     \
       leading = *numstr++;                                                   \