1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

[session] const in request_additional_file

This commit is contained in:
Witold Filipczyk 2022-02-10 19:52:24 +01:00
parent 4bfd00d4db
commit 6ee1349dfb

View File

@ -97,7 +97,7 @@ remote_session_flags_T remote_session_flags;
static struct file_to_load *request_additional_file(struct session *, static struct file_to_load *request_additional_file(struct session *,
char *, const char *,
struct uri *, int); struct uri *, int);
static window_handler_T tabwin_func; static window_handler_T tabwin_func;
@ -819,7 +819,7 @@ file_loading_callback(struct download *download, struct file_to_load *ftl)
} }
static struct file_to_load * static struct file_to_load *
request_additional_file(struct session *ses, char *name, struct uri *uri, int pri) request_additional_file(struct session *ses, const char *name, struct uri *uri, int pri)
{ {
struct file_to_load *ftl; struct file_to_load *ftl;