# HG changeset patch # User Fred Pierresteguy # Date 759767331 0 # Node ID 07f5e3a0f90592362c015792373f8eff063a32bc # Parent 6479e0eabb275c4da31064b05ef4d7dd1652d429 * xterm.c (x_term_init): Cast to (char **) before assignment to argv. diff -r 6479e0eabb27 -r 07f5e3a0f905 src/xterm.c --- a/src/xterm.c Thu Jan 27 11:01:59 1994 +0000 +++ b/src/xterm.c Fri Jan 28 14:28:51 1994 +0000 @@ -5169,7 +5169,7 @@ x_focus_frame = x_highlight_frame = 0; #ifdef USE_X_TOOLKIT - argv = XtMalloc (3 * sizeof (char *)); + argv = (char **) XtMalloc (3 * sizeof (char *)); argv [0] = ""; argv [1] = "-display"; argv [2] = display_name;