summaryrefslogtreecommitdiff
path: root/utils/filepath.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils/filepath.c')
-rw-r--r--utils/filepath.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/utils/filepath.c b/utils/filepath.c
index 7b85e4c9e..21a965949 100644
--- a/utils/filepath.c
+++ b/utils/filepath.c
@@ -33,7 +33,6 @@
#include "utils/config.h"
#include "utils/filepath.h"
-#include "utils/log.h"
/** maximum number of elements in the resource vector */
#define MAX_RESPATH 128
@@ -118,8 +117,6 @@ char *filepath_sfind(char **respathv, char *filepath, const char *filename)
while (respathv[respathc] != NULL) {
if (filepath_sfindfile(filepath, "%s/%s", respathv[respathc], filename) != NULL) {
- LOG(("ret\"%s\"",filepath));
-
return filepath;
}
@@ -147,8 +144,6 @@ char *filepath_find(char **respathv, const char *filename)
if (ret == NULL)
free(filepath);
- LOG(("ret\"%s\"",ret));
-
return ret;
}