diff options
Diffstat (limited to 'plugins/MenuItemEx/src/main.cpp')
-rw-r--r-- | plugins/MenuItemEx/src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/MenuItemEx/src/main.cpp b/plugins/MenuItemEx/src/main.cpp index b75ad82428..3a97fb52fb 100644 --- a/plugins/MenuItemEx/src/main.cpp +++ b/plugins/MenuItemEx/src/main.cpp @@ -602,9 +602,9 @@ INT_PTR onCopyID(WPARAM wparam, LPARAM lparam) PROTOACCOUNT *pa = ProtoGetAccount(szProto);
if (!pa->bOldProto)
- mir_snprintf(buffer, SIZEOF(buffer), "%s: %s", pa->szProtoName, szID);
+ mir_snprintf(buffer, "%s: %s", pa->szProtoName, szID);
else
- mir_snprintf(buffer, SIZEOF(buffer), "%s: %s", szProto, szID);
+ mir_snprintf(buffer, "%s: %s", szProto, szID);
}
else
strncpy(buffer, szID, SIZEOF(buffer)-1);
|