summaryrefslogtreecommitdiff
path: root/riscos/content-handlers/sprite.c
diff options
context:
space:
mode:
Diffstat (limited to 'riscos/content-handlers/sprite.c')
-rw-r--r--riscos/content-handlers/sprite.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/riscos/content-handlers/sprite.c b/riscos/content-handlers/sprite.c
index 9260703f4..f93deaa60 100644
--- a/riscos/content-handlers/sprite.c
+++ b/riscos/content-handlers/sprite.c
@@ -55,7 +55,7 @@ static void sprite_destroy(struct content *c);
static bool sprite_redraw(struct content *c, struct content_redraw_data *data,
const struct rect *clip, const struct redraw_context *ctx);
static nserror sprite_clone(const struct content *old, struct content **newc);
-static content_type sprite_content_type(lwc_string *mime_type);
+static content_type sprite_content_type(void);
static const content_handler sprite_content_handler = {
.create = sprite_create,
@@ -254,7 +254,7 @@ nserror sprite_clone(const struct content *old, struct content **newc)
return NSERROR_OK;
}
-content_type sprite_content_type(lwc_string *mime_type)
+content_type sprite_content_type(void)
{
return CONTENT_IMAGE;
}