From 5b304799fb995811a8686bab9e877cb235c21a2e Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sat, 7 Feb 2015 19:36:41 +0000 Subject: correct log format git-svn-id: http://svn.miranda-ng.org/main/trunk@12044 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/WhatsApp/src/WhatsAPI++/BinTreeNodeReader.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'protocols/WhatsApp/src/WhatsAPI++/BinTreeNodeReader.cpp') diff --git a/protocols/WhatsApp/src/WhatsAPI++/BinTreeNodeReader.cpp b/protocols/WhatsApp/src/WhatsAPI++/BinTreeNodeReader.cpp index 851d4599da..daf17108a8 100644 --- a/protocols/WhatsApp/src/WhatsAPI++/BinTreeNodeReader.cpp +++ b/protocols/WhatsApp/src/WhatsAPI++/BinTreeNodeReader.cpp @@ -260,7 +260,7 @@ void BinTreeNodeReader::fillArray(std::vector& buff, int len, Byt count += in->read(buff, count, len - count); } -void BinTreeNodeReader::fillArray(std::vector& buff, int len, ISocketConnection* in) +void BinTreeNodeReader::fillArray(std::vector& buff, int len, ISocketConnection *in) { int count = 0; while (count < len) @@ -326,19 +326,19 @@ void BinTreeNodeReader::streamStart() delete attributes; } -int BinTreeNodeReader::readInt8(ISocketConnection* in) +int BinTreeNodeReader::readInt8(ISocketConnection *in) { return in->read(); } -int BinTreeNodeReader::readInt16(ISocketConnection* in) +int BinTreeNodeReader::readInt16(ISocketConnection *in) { unsigned char data[2]; in->read(data, 2); return (int(data[0]) << 8) + int(data[1]); } -int BinTreeNodeReader::readInt24(ISocketConnection* in) +int BinTreeNodeReader::readInt24(ISocketConnection *in) { unsigned char data[3]; in->read(data, 3); -- cgit v1.2.3