From ce05bacfe03b4ce8f1382564f96d3277b739d4cb Mon Sep 17 00:00:00 2001 From: galanca Date: Wed, 15 Jun 2022 10:15:06 -0600 Subject: [PATCH] Change _snprintf for snprintf. --- src/EXMAN.CPP | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EXMAN.CPP b/src/EXMAN.CPP index e996c7b0c..ccad51cc6 100644 --- a/src/EXMAN.CPP +++ b/src/EXMAN.CPP @@ -1521,7 +1521,7 @@ RC rerIV( // inner fcn to issue runtime error message; msg handle ok for fmt; t // era here controls reporting of errors in msgI only. // assemble complete text char whole[920]; - _snprintf( whole, sizeof( whole)-1, "%s:\n %s", when, cmsg ); + snprintf( whole, sizeof( whole)-1, "%s:\n %s", when, cmsg ); // output message to err file and/or screen, increment error count. return errI( // central message issuer, rmkerr.cpp. returns RCBAD for convenience.