From cffa2e8f464bde0e63209335cc30ce4ce9b66151 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Tue, 19 Sep 2017 16:38:27 -0500 Subject: [PATCH] Fix typo in cvtFast.c Probably only affects MEDM --- src/libCom/cvtFast/cvtFast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libCom/cvtFast/cvtFast.c b/src/libCom/cvtFast/cvtFast.c index 4e04b4515..106c1ba47 100644 --- a/src/libCom/cvtFast/cvtFast.c +++ b/src/libCom/cvtFast/cvtFast.c @@ -457,7 +457,7 @@ size_t } size_t - cvtInt32OctalString(epicsInt32 val, char *pdest) + cvtInt32ToOctalString(epicsInt32 val, char *pdest) { if (val == 0) { *pdest++ = '0';