mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[viewer] casts to void * in calls of open_in_new_window
This commit is contained in:
parent
cc56055f1f
commit
08ef46c32e
@ -491,7 +491,7 @@ do_action(struct session *ses, main_action_T action_id, int verbose)
|
||||
break;
|
||||
|
||||
case ACT_MAIN_OPEN_LINK_IN_NEW_WINDOW:
|
||||
open_in_new_window(term, send_open_in_new_window, ses);
|
||||
open_in_new_window(term, (void *)send_open_in_new_window, ses);
|
||||
break;
|
||||
|
||||
case ACT_MAIN_OPEN_NEW_TAB:
|
||||
@ -503,7 +503,7 @@ do_action(struct session *ses, main_action_T action_id, int verbose)
|
||||
break;
|
||||
|
||||
case ACT_MAIN_OPEN_NEW_WINDOW:
|
||||
open_in_new_window(term, send_open_new_window, ses);
|
||||
open_in_new_window(term, (void *)send_open_new_window, ses);
|
||||
break;
|
||||
|
||||
case ACT_MAIN_OPEN_OS_SHELL:
|
||||
|
Loading…
Reference in New Issue
Block a user