From 924ee02ff7da55e78e6b3db4bc9b5ce861fa4bd2 Mon Sep 17 00:00:00 2001 From: Henrique Dante de Almeida Date: Sun, 20 May 2012 02:07:26 -0300 Subject: Constify GDBus signal tables Constify signal tables with the following command: find . -name '*.[ch]' -exec \ sed -i 's/\(GDBusSignalTable .* =\)/const \1/g' {} \; --- src/ussd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ussd.c') diff --git a/src/ussd.c b/src/ussd.c index 25ef61fc..92a7949b 100644 --- a/src/ussd.c +++ b/src/ussd.c @@ -740,7 +740,7 @@ static const GDBusMethodTable ussd_methods[] = { { } }; -static GDBusSignalTable ussd_signals[] = { +static const GDBusSignalTable ussd_signals[] = { { "NotificationReceived", "s" }, { "RequestReceived", "s" }, { "PropertyChanged", "sv" }, -- cgit v1.2.3