summaryrefslogtreecommitdiff
path: root/atari/filetype.c
diff options
context:
space:
mode:
Diffstat (limited to 'atari/filetype.c')
-rw-r--r--atari/filetype.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/atari/filetype.c b/atari/filetype.c
index 4e8c334f8..1cce6fc18 100644
--- a/atari/filetype.c
+++ b/atari/filetype.c
@@ -37,7 +37,7 @@ const char *fetch_filetype(const char *unix_path)
char * res = (char*)"text/html";
l = strlen(unix_path);
- LOG(("unix path: %s", unix_path));
+ LOG("unix path: %s", unix_path);
/* This line is added for devlopment versions running from the root dir: */
if( strchr( unix_path, (int)'.' ) ){
@@ -86,6 +86,6 @@ const char *fetch_filetype(const char *unix_path)
}
}
- LOG(("mime type: %s", res ));
+ LOG("mime type: %s", res);
return( res );
}