From: Nick Mathewson Date: Mon, 16 Nov 2009 22:23:06 +0000 (+0000) Subject: Fix a declaration of __func__ in rpcgen. X-Git-Tag: release-2.0.3-alpha~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f9de8670fd1a88f0db898acd46de38a73d764c18;p=libevent Fix a declaration of __func__ in rpcgen. svn:r1535 --- diff --git a/event_rpcgen.py b/event_rpcgen.py index 6b8f5fa9..7bbe3138 100755 --- a/event_rpcgen.py +++ b/event_rpcgen.py @@ -1566,7 +1566,7 @@ class CCodeGenerator: '#include \n' '#include \n\n' '#ifdef _EVENT___func__\n' - '#define __func__ _EVENT___FUNC__\n' + '#define __func__ _EVENT___func__\n' '#endif\n\n' )