From: Szymon Janc Date: Fri, 4 Oct 2013 09:05:26 +0000 (+0200) Subject: obexd/bluetooth: Make dict_append_entry function static X-Git-Tag: android-x86-4.4-r3~7525 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=a78dae82895a49e2527c5cad2383515c13e37bd3;p=android-x86%2Fexternal-bluetooth-bluez.git obexd/bluetooth: Make dict_append_entry function static 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] --- 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;