summaryrefslogtreecommitdiff
path: root/riscos/filetype.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-03-27 02:24:00 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-03-27 02:24:00 +0000
commit68d8ed687d7437daa80e3321cf1deb4f9cf5a760 (patch)
treee2ec0b3aa89e51f70e7e680f3368a9ade5e85a76 /riscos/filetype.c
parentd8ab59b578783e941bef46590acd65e5998b3ca3 (diff)
downloadnetsurf-68d8ed687d7437daa80e3321cf1deb4f9cf5a760.tar.gz
netsurf-68d8ed687d7437daa80e3321cf1deb4f9cf5a760.tar.bz2
Squash warning.
svn path=/trunk/netsurf/; revision=6929
Diffstat (limited to 'riscos/filetype.c')
-rw-r--r--riscos/filetype.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/riscos/filetype.c b/riscos/filetype.c
index dc1b9b8d2..2fac350b3 100644
--- a/riscos/filetype.c
+++ b/riscos/filetype.c
@@ -260,9 +260,10 @@ int ro_content_filetype(struct content *content)
return file_type;
error = xmimemaptranslate_mime_type_to_filetype(content->mime_type,
- &file_type);
+ (bits *) &file_type);
if (error)
return 0xffd;
+
return file_type;
}