We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58fa670 commit cf91d9cCopy full SHA for cf91d9c
src/core/utilities/sp_util.h
@@ -52,7 +52,7 @@ inline void ChunkedMsg(const char* msg)
52
int iLen = strlen(msg);
53
54
while(iLen > 0) {
55
- Msg(pMsg);
+ Msg("%s", pMsg);
56
pMsg += MAX_CHUNK-1;
57
iLen -= MAX_CHUNK-1;
58
}
0 commit comments