about summary refs log tree commit diff
path: root/sysdeps/ia64/fpu/printf_fphex.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/ia64/fpu/printf_fphex.c')
-rw-r--r--sysdeps/ia64/fpu/printf_fphex.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/sysdeps/ia64/fpu/printf_fphex.c b/sysdeps/ia64/fpu/printf_fphex.c
index e7c3109510..91347b7e3d 100644
--- a/sysdeps/ia64/fpu/printf_fphex.c
+++ b/sysdeps/ia64/fpu/printf_fphex.c
@@ -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++;						      \