Commit e93a3f65 e93a3f65ac5f41905f4f0cd545731d403ba5f7c3 by Sergey Poznyakoff

(_url_path_init): Missed typecast.

1 parent 675b0afa
...@@ -273,7 +273,7 @@ _url_path_init (url_t url) ...@@ -273,7 +273,7 @@ _url_path_init (url_t url)
273 mu_scheme_autodetect_p (name, &path); 273 mu_scheme_autodetect_p (name, &path);
274 name = strdup (path); 274 name = strdup (path);
275 free (url->name); 275 free (url->name);
276 url->name = name; 276 url->name = (char*) name;
277 277
278 /* TYPE */ 278 /* TYPE */
279 url->_destroy = url_path_destroy; 279 url->_destroy = url_path_destroy;
......