diff options
author | Szymon Janc <szymon.janc@tieto.com> | 2013-10-04 11:05:27 +0200 |
---|---|---|
committer | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2013-10-04 14:10:16 +0300 |
commit | fcc8b020d8206fd61c3a5693ab5eedd25c656d7c (patch) | |
tree | 072c9157e6cc82840b37866d892d5c656c9f0cfe /obexd | |
parent | a78dae82895a49e2527c5cad2383515c13e37bd3 (diff) |
obexd/MAP: Fix missing include
This fix following build error:
CC obexd/client/obexd-mns.o
obexd/client/mns.c: In function ‘mns_connect’:
obexd/client/mns.c:105:2: error: implicit declaration of function
‘manager_register_session’ [-Werror=implicit-function-declaration]
obexd/client/mns.c: In function ‘mns_disconnect’:
obexd/client/mns.c:128:2: error: implicit declaration of function
‘manager_unregister_session’ [-Werror=implicit-function-declaration]
Diffstat (limited to 'obexd')
-rw-r--r-- | obexd/client/mns.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/obexd/client/mns.c b/obexd/client/mns.c index ee64ed656..033a0cb13 100644 --- a/obexd/client/mns.c +++ b/obexd/client/mns.c @@ -44,6 +44,8 @@ #include "map_ap.h" #include "map-event.h" +#include "obexd/src/manager.h" + struct mns_session { GString *buffer; GObexApparam *inparams; |