summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2015-08-15 09:41:51 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2015-08-15 09:41:51 +0100
commit1088c4cd38cdc314712d2ee428389872a5450c2b (patch)
tree0fea693e1b1477751fdea8158864b8d219ea1d74 /riscos
parent31d45274b6b15f4d89575904a04429715c9b117e (diff)
downloadnetsurf-1088c4cd38cdc314712d2ee428389872a5450c2b.tar.gz
netsurf-1088c4cd38cdc314712d2ee428389872a5450c2b.tar.bz2
Remove excessive logging.
Diffstat (limited to 'riscos')
-rw-r--r--riscos/filetype.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/riscos/filetype.c b/riscos/filetype.c
index 535c931e8..63f8a857d 100644
--- a/riscos/filetype.c
+++ b/riscos/filetype.c
@@ -76,7 +76,6 @@ const char *fetch_filetype(const char *unix_path)
warn_user("NoMemory", 0);
return "application/riscos";
}
- LOG("unix_path = '%s'", unix_path);
/* convert path to RISC OS format and read file type */
r = __riscosify(unix_path, 0, __RISCOSIFY_NO_SUFFIX, path, len, 0);
@@ -85,7 +84,6 @@ const char *fetch_filetype(const char *unix_path)
free(path);
return "application/riscos";
}
- LOG("riscos path '%s'", path);
error = xosfile_read_stamped_no_path(path, &objtype, 0, 0, 0, 0,
&file_type);