From a78dae82895a49e2527c5cad2383515c13e37bd3 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Fri, 4 Oct 2013 11:05:26 +0200 Subject: [PATCH] obexd/bluetooth: Make dict_append_entry function static MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fix following build error: CC obexd/plugins/obexd-bluetooth.o obexd/plugins/bluetooth.c:242:6: error: no previous declaration for ‘dict_append_entry’ [-Werror=missing-declarations] --- obexd/plugins/bluetooth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obexd/plugins/bluetooth.c b/obexd/plugins/bluetooth.c index 7f8a26d29..143d0c22e 100644 --- a/obexd/plugins/bluetooth.c +++ b/obexd/plugins/bluetooth.c @@ -239,7 +239,7 @@ static void append_variant(DBusMessageIter *iter, int type, void *val) } -void dict_append_entry(DBusMessageIter *dict, +static void dict_append_entry(DBusMessageIter *dict, const char *key, int type, void *val) { DBusMessageIter entry; -- 2.47.3