summaryrefslogtreecommitdiff
path: root/src/VBox/Runtime/common/string/strformat.cpp
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2022-07-28 22:55:01 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2022-07-28 22:55:01 +0000
commit2991a3abb0347475a40f0b1eb35b59a81b7eb06e (patch)
tree0e1d46167cc40c544efaf5ca268486292db23df0 /src/VBox/Runtime/common/string/strformat.cpp
parentd241613e1918f511ca26d558aa83020dfd3afa96 (diff)
downloadVirtualBox-svn-2991a3abb0347475a40f0b1eb35b59a81b7eb06e.tar.gz
IPRT/strformat.cpp: Build fix for the floating point formatting. bugref:10261
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@95927 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/Runtime/common/string/strformat.cpp')
-rw-r--r--src/VBox/Runtime/common/string/strformat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VBox/Runtime/common/string/strformat.cpp b/src/VBox/Runtime/common/string/strformat.cpp
index c037638eb89..eb45a74d67a 100644
--- a/src/VBox/Runtime/common/string/strformat.cpp
+++ b/src/VBox/Runtime/common/string/strformat.cpp
@@ -784,7 +784,7 @@ RTDECL(size_t) RTStrFormatV(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, PFNSTRF
RTFLOAT80U2 r80;
r80.lrd = va_arg(args, long double);
# ifndef IN_BLD_PROG
- cchNum = RTStrFormatR80U2(&szTmp[0], sizeof(szTmp), &r80, cchWidth, cchPrecision, 0);
+ cchNum = RTStrFormatR80u2(&szTmp[0], sizeof(szTmp), &r80, cchWidth, cchPrecision, 0);
# else
cch += pfnOutput(pvArgOutput, RT_STR_TUPLE("<long double>"));
RT_NOREF_PV(r80);