diff options
Diffstat (limited to 'cgit.c')
| -rw-r--r-- | cgit.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -21,7 +21,7 @@ void add_mimetype(const char *name, const char *value)  {  	struct string_list_item *item; -	item = string_list_insert(xstrdup(name), &ctx.cfg.mimetypes); +	item = string_list_insert(&ctx.cfg.mimetypes, xstrdup(name));  	item->util = xstrdup(value);  } |