1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-10-23 07:20:10 -04:00

[mime] cast to char *

This commit is contained in:
Witold Filipczyk 2022-02-18 17:09:54 +01:00
parent 89340c3848
commit b0c64563c2

View File

@ -174,7 +174,7 @@ init_mimetypes_map(void)
/* Determine the path */
path = get_mimetypes_path();
if (!path || !*path) path = DEFAULT_MIMETYPES_PATH;
if (!path || !*path) path = (char *)DEFAULT_MIMETYPES_PATH;
while (*path) {
char *filename = get_next_path_filename(&path, ':');