aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Embedded_SW/Embedded/Common
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2020-11-22 09:38:05 +0200
committerShlomo Hecht <shlomo@twine-s.com>2020-11-22 09:38:05 +0200
commitdf519d9ad1e71b9a6504d438a335d80b103f1567 (patch)
tree46800778b8017a461974f6180dc232d3a029fe09 /Software/Embedded_SW/Embedded/Common
parent1c5e8e3515f65a97a6385d34b2014d87be6dcc30 (diff)
downloadTango-df519d9ad1e71b9a6504d438a335d80b103f1567.tar.gz
Tango-df519d9ad1e71b9a6504d438a335d80b103f1567.zip
Version 1.5.2(3) last before RFID - changes summary
Diffstat (limited to 'Software/Embedded_SW/Embedded/Common')
-rw-r--r--Software/Embedded_SW/Embedded/Common/SW_Info/SW_Info.c2
-rw-r--r--Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Software/Embedded_SW/Embedded/Common/SW_Info/SW_Info.c b/Software/Embedded_SW/Embedded/Common/SW_Info/SW_Info.c
index a6adc3b3e..d4720d3d2 100644
--- a/Software/Embedded_SW/Embedded/Common/SW_Info/SW_Info.c
+++ b/Software/Embedded_SW/Embedded/Common/SW_Info/SW_Info.c
@@ -20,7 +20,7 @@ typedef struct
} TangoVersion_t;
-TangoVersion_t _gTangoVersion = {1,5,2,2};
+TangoVersion_t _gTangoVersion = {1,5,2,3};
#define BUILD_DATE __DATE__
char Dat[50] = BUILD_DATE;
diff --git a/Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c b/Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c
index 420e1dbc3..749152b2e 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 = uvsnprintf(s, n, format, arg);
+ ret = vsnprintf(s, n, format, arg);
//
// End the varargs processing.