summaryrefslogtreecommitdiffstats
path: root/hcid/hcid.h
diff options
context:
space:
mode:
Diffstat (limited to 'hcid/hcid.h')
-rw-r--r--hcid/hcid.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/hcid/hcid.h b/hcid/hcid.h
index f25ebea8..1483c6ba 100644
--- a/hcid/hcid.h
+++ b/hcid/hcid.h
@@ -24,7 +24,6 @@
*/
#include <time.h>
-#include <syslog.h>
#include <sys/types.h>
#include <sys/ioctl.h>
@@ -189,7 +188,7 @@ static inline int find_conn(int dd, int dev_id, long arg)
cl = malloc(10 * sizeof(*ci) + sizeof(*cl));
if (!cl) {
- syslog(LOG_ERR, "Can't allocate memory");
+ error("Can't allocate memory");
return 0;
}
@@ -198,7 +197,7 @@ static inline int find_conn(int dd, int dev_id, long arg)
ci = cl->conn_info;
if (ioctl(dd, HCIGETCONNLIST, (void *) cl)) {
- syslog(LOG_ERR, "Can't get connection list");
+ error("Can't get connection list");
return 0;
}