Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/exman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down