From: Niels Provos Date: Wed, 17 May 2006 13:13:31 +0000 (+0000) Subject: oops. the enums were actually creating symbols X-Git-Tag: release-2.0.1-alpha~735 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ebf5333f97a342fc0e53a985daa54b1b57794fea;p=libevent oops. the enums were actually creating symbols svn:r212 --- diff --git a/event_rpcgen.py b/event_rpcgen.py index d6a579d1..d9265120 100755 --- a/event_rpcgen.py +++ b/event_rpcgen.py @@ -63,7 +63,7 @@ class Struct: print >>file, ' %s=%d,' % (self.EntryTagName(entry), entry.Tag()) print >>file, ' %s_MAX_TAGS' % (self._name.upper()) - print >>file, '} %s_tags;\n' % (self._name.lower()) + print >>file, '};\n' def PrintForwardDeclaration(self, file): print >>file, 'struct %s;' % self._name