From 9ee4f6146e06f6d142cc98a2bc600a49b4a3ddc6 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sat, 3 Sep 2011 09:27:42 +0000 Subject: Remove mime_type parameter from content handler content_type callback API svn path=/trunk/netsurf/; revision=12704 --- content/content_factory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/content_factory.c') diff --git a/content/content_factory.c b/content/content_factory.c index 0b9d44b7d..d3a69c34d 100644 --- a/content/content_factory.c +++ b/content/content_factory.c @@ -135,7 +135,7 @@ content_type content_factory_type_from_mime_type(lwc_string *mime_type) handler = content_lookup(mime_type); if (handler != NULL) { - type = handler->type(mime_type); + type = handler->type(); } return type; -- cgit v1.2.3