]> git.eshelyaron.com Git - emacs.git/commitdiff
* xterm.c (x_term_init): Cast to (char **) before assignment to argv.
authorFred Pierresteguy <F.Pierresteguy@frcl.bull.fr>
Fri, 28 Jan 1994 14:28:51 +0000 (14:28 +0000)
committerFred Pierresteguy <F.Pierresteguy@frcl.bull.fr>
Fri, 28 Jan 1994 14:28:51 +0000 (14:28 +0000)
src/xterm.c

index 0e8e37fa970e68c76a87dcbcaeaaf59d20ec9e22..7623018ee7036b27d339ed5d9579cc2bbebc8c77 100644 (file)
@@ -5169,7 +5169,7 @@ x_term_init (display_name)
   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;