summaryrefslogtreecommitdiff
path: root/src/libtipidee
diff options
context:
space:
mode:
Diffstat (limited to 'src/libtipidee')
-rw-r--r--src/libtipidee/tipidee_conf_get.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libtipidee/tipidee_conf_get.c b/src/libtipidee/tipidee_conf_get.c
index 866ec99..ff948ee 100644
--- a/src/libtipidee/tipidee_conf_get.c
+++ b/src/libtipidee/tipidee_conf_get.c
@@ -4,15 +4,14 @@
#include <string.h>
#include <skalibs/cdb.h>
-#include <skalibs/lolstdio.h>
#include <tipidee/conf.h>
+#include <tipidee/log.h>
int tipidee_conf_get (tipidee_conf const *conf, char const *key, cdb_data *data)
{
size_t keylen = strlen(key) ;
if (keylen > TIPIDEE_CONF_KEY_MAXLEN) return (errno = EINVAL, 0) ;
- LOLDEBUG("tipidee_conf_get: looking up %s", key) ;
switch (cdb_find(&conf->c, data, key, keylen))
{
case -1 : return (errno = EILSEQ, 0) ;