Commit cf3b3080 by Jakub Jelinek Committed by Jakub Jelinek

printf_fp.c (__quadmath_printf_fp): Use memcpy instead of mempcpy.

	* printf/printf_fp.c (__quadmath_printf_fp): Use memcpy instead of
	mempcpy.

From-SVN: r171525
parent 7657ab90
2011-03-25 Jakub Jelinek <jakub@redhat.com>
* printf/printf_fp.c (__quadmath_printf_fp): Use memcpy instead of
mempcpy.
2011-03-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
PR bootstrap/48135
......
......@@ -1197,7 +1197,7 @@ __quadmath_printf_fp (struct __quadmath_printf_file *fp,
if (*copywc == decimalwc)
memcpy (cp, decimal, decimal_len), cp += decimal_len;
else if (*copywc == thousands_sepwc)
mempcpy (cp, thousands_sep, thousands_sep_len), cp += thousands_sep_len;
memcpy (cp, thousands_sep, thousands_sep_len), cp += thousands_sep_len;
else
*cp++ = (char) *copywc;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment