diff options
author | Florent Le Coz <louiz@louiz.org> | 2015-07-09 13:49:08 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2015-07-09 13:49:08 +0200 |
commit | a42af9e700bcf54777b53b5d0ca999b3b0c107e9 (patch) | |
tree | 9574cd12f3711d3255fb96db7320dfa2da91133f /louloulibs/xmpp | |
parent | 0af536a2be6d23fa221f61a77e89436b8fb2a015 (diff) | |
download | biboumi-a42af9e700bcf54777b53b5d0ca999b3b0c107e9.tar.gz biboumi-a42af9e700bcf54777b53b5d0ca999b3b0c107e9.tar.bz2 biboumi-a42af9e700bcf54777b53b5d0ca999b3b0c107e9.tar.xz biboumi-a42af9e700bcf54777b53b5d0ca999b3b0c107e9.zip |
Fix the log_* macros to not have two ; at the end of lines
Diffstat (limited to 'louloulibs/xmpp')
-rw-r--r-- | louloulibs/xmpp/xmpp_parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/louloulibs/xmpp/xmpp_parser.cpp b/louloulibs/xmpp/xmpp_parser.cpp index 6bb0d28..fbe525a 100644 --- a/louloulibs/xmpp/xmpp_parser.cpp +++ b/louloulibs/xmpp/xmpp_parser.cpp @@ -58,7 +58,7 @@ int XmppParser::feed(const char* data, const int len, const bool is_final) if (res == XML_STATUS_ERROR && (XML_GetErrorCode(this->parser) != XML_ERROR_FINISHED)) log_error("Xml_Parse encountered an error: " << - XML_ErrorString(XML_GetErrorCode(this->parser))) + XML_ErrorString(XML_GetErrorCode(this->parser))); return res; } |