diff options
author | George Hazan <george.hazan@gmail.com> | 2015-02-07 19:36:41 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-02-07 19:36:41 +0000 |
commit | 5b304799fb995811a8686bab9e877cb235c21a2e (patch) | |
tree | 0e212481e8b6b92b82ae10fa6b6896f565e64bb4 /protocols/WhatsApp/src/WhatsAPI++/BinTreeNodeReader.cpp | |
parent | 9540f9a510f3eaab57285c56198d270c648d54a1 (diff) |
correct log format
git-svn-id: http://svn.miranda-ng.org/main/trunk@12044 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/WhatsApp/src/WhatsAPI++/BinTreeNodeReader.cpp')
-rw-r--r-- | protocols/WhatsApp/src/WhatsAPI++/BinTreeNodeReader.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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<unsigned char>& buff, int len, Byt count += in->read(buff, count, len - count);
}
-void BinTreeNodeReader::fillArray(std::vector<unsigned char>& buff, int len, ISocketConnection* in)
+void BinTreeNodeReader::fillArray(std::vector<unsigned char>& 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);
|