summaryrefslogtreecommitdiffstats
path: root/src/sdpd.h
diff options
context:
space:
mode:
authorClaudio Takahasi <claudio.takahasi@openbossa.org>2008-10-14 17:11:56 -0300
committerClaudio Takahasi <claudio.takahasi@openbossa.org>2008-10-14 17:11:56 -0300
commit948e66f85e25b39cb839c38a03fc6a17896a6395 (patch)
tree4e59190e40f8f489525052efb4f5dc95280d3092 /src/sdpd.h
parent2e8e3f8cd8b288f3679dae3bc7d948d112e64f9f (diff)
Fix build error when SDP_DEBUG is enabled
Diffstat (limited to 'src/sdpd.h')
-rw-r--r--src/sdpd.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sdpd.h b/src/sdpd.h
index 194d45cb..009c4eed 100644
--- a/src/sdpd.h
+++ b/src/sdpd.h
@@ -28,6 +28,7 @@
#include <bluetooth/sdp.h>
#ifdef SDP_DEBUG
+#include <syslog.h>
#define SDPDBG(fmt, arg...) syslog(LOG_DEBUG, "%s: " fmt "\n", __func__ , ## arg)
#else
#define SDPDBG(fmt...)