diff options
Diffstat (limited to 'include/m_protomod.h')
-rw-r--r-- | include/m_protomod.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/m_protomod.h b/include/m_protomod.h index 98b5485804..13dd93e5fb 100644 --- a/include/m_protomod.h +++ b/include/m_protomod.h @@ -69,7 +69,7 @@ __forceinline HANDLE CreateProtoServiceFunction(const char *szModule, const char {
char str[MAXMODULELABELLENGTH];
_snprintf(str, sizeof(str), "%s%s", szModule, szService);
- str[MAXMODULELABELLENGTH-1] = 0;
+ str[MAXMODULELABELLENGTH-1] = 0;
return CreateServiceFunction(str, serviceProc);
}
|