diff options
author | default <nobody@localhost> | 2023-08-14 18:04:27 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-08-14 18:04:27 +0200 |
commit | 8c87b6894eafc22e5188f382b7bc726ed06e6919 (patch) | |
tree | 76b9eb8f106b9b48c1cfcd0b30009ed3b843fede /html.c | |
parent | 3f7e3c1d81fef35eada041b7d901974129238dce (diff) |
Fixed some warning.
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1967,7 +1967,7 @@ int html_get_handler(const xs_dict *req, const char *q_path, if (valid_status(status)) { *b_size = sz; - *ctype = xs_mime_by_ext(id); + *ctype = (char *)xs_mime_by_ext(id); } } } |