From: Martin Storsjo Date: Tue, 15 Nov 2011 00:09:26 +0000 (-0800) Subject: Fix missing log message parameter X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=83e701eef0d7947713280fe3e7561bed1e7195f5;p=rtmpdump Fix missing log message parameter --- diff --git a/librtmp/rtmp.c b/librtmp/rtmp.c index a9c1bc1..4da318b 100644 --- a/librtmp/rtmp.c +++ b/librtmp/rtmp.c @@ -974,7 +974,7 @@ SocksNegotiate(RTMP *r) } else { - RTMP_Log(RTMP_LOGERROR, "%s, SOCKS returned error code %d", packet[1]); + RTMP_Log(RTMP_LOGERROR, "%s, SOCKS returned error code %d", __FUNCTION__, packet[1]); return FALSE; } }