diff options
Diffstat (limited to 'protocols/Xfire/src/tools.cpp')
-rw-r--r-- | protocols/Xfire/src/tools.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Xfire/src/tools.cpp b/protocols/Xfire/src/tools.cpp index 05658e1ac8..ad982108b6 100644 --- a/protocols/Xfire/src/tools.cpp +++ b/protocols/Xfire/src/tools.cpp @@ -42,9 +42,9 @@ extern HANDLE hNetlib; for(int i=0;i<size;i++) { if (i%16==0&&i!=0) - mir_snprintf(buffer, SIZEOF(buffer), "%s\n%02x ", buffer, buf[i]); + mir_snprintf(buffer, "%s\n%02x ", buffer, buf[i]); else - mir_snprintf(buffer, SIZEOF(buffer), "%s%02x ", buffer, buf[i]); + mir_snprintf(buffer, "%s%02x ", buffer, buf[i]); } return buffer; |