summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2011-04-26 10:23:25 +0100
committerJonny Lamb <jonny.lamb@collabora.co.uk>2011-04-26 10:23:25 +0100
commita9d71a3e831bbdb165ded10d737a9a0737678a34 (patch)
treeed51d634487caa3789b7e93547b32c01fe3339f8
parenteaa697c70b1acf39b204792ee77b4802a451e27a (diff)
glib-client-marshaller-gen.py: make function static
We don't want it public, or even protected. Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
-rw-r--r--tp-glib-tools/glib-client-marshaller-gen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tp-glib-tools/glib-client-marshaller-gen.py b/tp-glib-tools/glib-client-marshaller-gen.py
index 5444725..b08341b 100644
--- a/tp-glib-tools/glib-client-marshaller-gen.py
+++ b/tp-glib-tools/glib-client-marshaller-gen.py
@@ -31,7 +31,7 @@ class Generator(object):
for signal in signals:
self.do_signal(signal)
- print 'void'
+ print 'static void'
print '%s_register_dbus_glib_marshallers (void)' % self.prefix
print '{'