summaryrefslogtreecommitdiff
path: root/health
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@profusion.mobi>2012-05-18 00:23:26 -0300
committerMarcel Holtmann <marcel@holtmann.org>2012-05-17 20:32:20 -0700
commit25a42e675a3d38ffc65d475718a17a97c393533d (patch)
tree1351510b1b57f3a65cc5da790d58e2031977596b /health
parent665014ce89d30411a05b62acf34711e797daa59a (diff)
downloadbluez-25a42e675a3d38ffc65d475718a17a97c393533d.tar.gz
Constify GDBus signal tables
Constify signal tables with the following command: find . -name '*.[ch]' -exec \ sed -i 's/\(GDBusSignalTable .* =\)/const \1/g' {} \;
Diffstat (limited to 'health')
-rw-r--r--health/hdp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/health/hdp.c b/health/hdp.c
index 2d3f9bb29..3b1ea49ae 100644
--- a/health/hdp.c
+++ b/health/hdp.c
@@ -2104,7 +2104,7 @@ static const GDBusMethodTable health_device_methods[] = {
{ NULL }
};
-static GDBusSignalTable health_device_signals[] = {
+static const GDBusSignalTable health_device_signals[] = {
{"ChannelConnected", "o" },
{"ChannelDeleted", "o" },
{"PropertyChanged", "sv" },