summaryrefslogtreecommitdiff
path: root/windows/findfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'windows/findfile.c')
-rw-r--r--windows/findfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/windows/findfile.c b/windows/findfile.c
index 7323666d3..8c8906a80 100644
--- a/windows/findfile.c
+++ b/windows/findfile.c
@@ -102,7 +102,7 @@ char *nsws_find_resource(char *buf, const char *filename, const char *def)
char t[PATH_MAX];
if (cdir != NULL) {
- LOG(("Found Home %s", cdir));
+ LOG("Found Home %s", cdir);
strcpy(t, cdir);
strcat(t, "/.netsurf/");
strcat(t, filename);
@@ -129,7 +129,7 @@ char *nsws_find_resource(char *buf, const char *filename, const char *def)
getcwd(t, PATH_MAX - SLEN("\\res\\") - strlen(filename));
strcat(t, "\\res\\");
strcat(t, filename);
- LOG(("looking in %s", t));
+ LOG("looking in %s", t);
if ((realpath(t, buf) != NULL) && (access(buf, R_OK) == 0))
return buf;