diff options
Diffstat (limited to 'plugins/XSoundNotify/src/xsn_main.cpp')
-rw-r--r-- | plugins/XSoundNotify/src/xsn_main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/XSoundNotify/src/xsn_main.cpp b/plugins/XSoundNotify/src/xsn_main.cpp index 51fb53124e..3cfe906eec 100644 --- a/plugins/XSoundNotify/src/xsn_main.cpp +++ b/plugins/XSoundNotify/src/xsn_main.cpp @@ -89,7 +89,7 @@ static int ProtoAck(WPARAM, LPARAM lParam) for (int i = 0; i < SIZEOF(selfSounds); i++) {
if (selfSounds[i].iStatus == ack->lParam) {
char buf[128];
- mir_snprintf(buf, SIZEOF(buf), "%s%s", ack->szModule, selfSounds[i].szName);
+ mir_snprintf(buf, "%s%s", ack->szModule, selfSounds[i].szName);
SkinPlaySound(buf);
break;
}
|