You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-lang/cxprolog/files/cxprolog-0.98.2-printf-musl...

15 lines
478 B

--- cxprolog-0.98.2.orig/src/Number.c 2016-01-23 22:07:48.000000000 +0100
+++ cxprolog-0.98.2/src/Number.c 2022-05-21 10:03:54.275367970 +0200
@@ -282,9 +282,9 @@
{
#if HAS_LONG_DOUBLE_OPS
if( precision > 0 )
- return GStrFormat("%%.%dllg", precision) ;
+ return GStrFormat("%%.%dLg", precision) ;
else
- return GStrFormat("%%.%dllf", -precision) ;
+ return GStrFormat("%%.%dLf", -precision) ;
#else
if( precision > 0 )
return GStrFormat("%%.%dlg", precision) ;