len should be signed

This commit is contained in:
Alexander Kass
2013-09-07 11:03:31 +04:00
parent 8698c1b852
commit 55b6da74d8

View File

@@ -681,7 +681,8 @@ void xmpp_conn_disable_tls(xmpp_conn_t * const conn)
static void _log_open_tag(xmpp_conn_t *conn, char **attrs)
{
char buf[4096];
size_t len, pos;
size_t pos;
int len;
int i;
if (!attrs) return;