diff options
-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 3e28b55591..4f1ef4697d 100644 --- a/include/m_protomod.h +++ b/include/m_protomod.h @@ -69,7 +69,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. __forceinline HANDLE CreateProtoServiceFunction(const char *szModule, const char *szService, MIRANDASERVICE serviceProc)
{
char str[MAXMODULELABELLENGTH];
- _snprintf(str, sizeof(str), "%s%s", szModule, szService);
+ mir_snprintf(str, sizeof(str), "%s%s", szModule, szService);
str[MAXMODULELABELLENGTH-1] = 0;
return CreateServiceFunction(str, serviceProc);
}
|