summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);