diff options
Diffstat (limited to 'protocols/Xfire/src/buddylistnamespacket.cpp')
-rw-r--r-- | protocols/Xfire/src/buddylistnamespacket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Xfire/src/buddylistnamespacket.cpp b/protocols/Xfire/src/buddylistnamespacket.cpp index 80e962fe4d..bebbc6db78 100644 --- a/protocols/Xfire/src/buddylistnamespacket.cpp +++ b/protocols/Xfire/src/buddylistnamespacket.cpp @@ -46,7 +46,7 @@ namespace xfirelib { void BuddyListNamesPacket::parseContent(char *buf, int length, int numberOfAtts) { int index = 0; //prüfe ob das packet mit 0x7 anfängt um eventuell crashes zufixen - if(buf[0]!=0x7) + if (buf[0]!=0x7) { usernames = new vector<string>; nicks = new vector<string>; |