diff options
author | Szymon Janc <szymon.janc@tieto.com> | 2013-10-04 11:05:34 +0200 |
---|---|---|
committer | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2013-10-04 14:10:33 +0300 |
commit | 757e10de01a4a35ac7bbebb0971c67812b98004b (patch) | |
tree | 57bb2231185ed3e60e45ca1aaf213681b119b5ca /obexd | |
parent | 5cbc2e68ff3ba03b0c2b5f78782c59d8cc888fb6 (diff) | |
download | bluez-757e10de01a4a35ac7bbebb0971c67812b98004b.tar.gz |
obexd/MAP: Fix missing include
This fix following build error:
CC obexd/client/obexd-map.o
obexd/client/map.c: In function ‘msg_element’:
obexd/client/map.c:1113:2: error: implicit declaration of function ‘strtoull’ [-Werror=implicit-function-declaration]
Diffstat (limited to 'obexd')
-rw-r--r-- | obexd/client/map.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/obexd/client/map.c b/obexd/client/map.c index fe15babd2..801d715f7 100644 --- a/obexd/client/map.c +++ b/obexd/client/map.c @@ -29,6 +29,7 @@ #include <stdio.h> #include <stdbool.h> #include <inttypes.h> +#include <stdlib.h> #include <glib.h> #include <gdbus/gdbus.h> #include <gobex/gobex-apparam.h> |