aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2020-11-25 12:08:28 +0200
committerShlomo Hecht <shlomo@twine-s.com>2020-11-25 12:08:28 +0200
commit978439fe882ef59b63fb1b1450bd615f707214c9 (patch)
treeb3cd057aa36d834a7c7a724a231cd66eaede6498 /Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c
parentf95ad012ba68f1b025654925ca17d199d653a41c (diff)
downloadTango-978439fe882ef59b63fb1b1450bd615f707214c9.tar.gz
Tango-978439fe882ef59b63fb1b1450bd615f707214c9.zip
fixes for new version.
Diffstat (limited to 'Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c')
-rw-r--r--Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c b/Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c
index 749152b2e..420e1dbc3 100644
--- a/Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c
+++ b/Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c
@@ -819,7 +819,7 @@ usnprintf(char * restrict s, size_t n, const char * restrict format, ...)
//
// Call vsnprintf to perform the conversion.
//
- ret = vsnprintf(s, n, format, arg);
+ ret = uvsnprintf(s, n, format, arg);
//
// End the varargs processing.