diff options
author | Benedikt Meurer <benedikt.meurer@googlemail.com> | 2012-02-05 09:20:46 +0000 |
---|---|---|
committer | Benedikt Meurer <benedikt.meurer@googlemail.com> | 2012-02-05 09:20:46 +0000 |
commit | d0f04172e747ddf84f88ea8a126357664412d574 (patch) | |
tree | c268b49ebb311d5feda21af22c9591c6b326ed29 /otherlibs/labltk/support/cltkMisc.c | |
parent | e76218f17d50cb2d8d3f0fcf502c23bb5325fd30 (diff) |
Fix various compiler warnings in labltk.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12126 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/labltk/support/cltkMisc.c')
-rw-r--r-- | otherlibs/labltk/support/cltkMisc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/labltk/support/cltkMisc.c b/otherlibs/labltk/support/cltkMisc.c index e5360aa20..0e14cde81 100644 --- a/otherlibs/labltk/support/cltkMisc.c +++ b/otherlibs/labltk/support/cltkMisc.c @@ -35,7 +35,7 @@ CAMLprim value camltk_splitlist (value v) utf = caml_string_to_tcl(v); /* argv is allocated by Tcl, to be freed by us */ - result = Tcl_SplitList(cltclinterp,utf,&argc,&argv); + result = Tcl_SplitList(cltclinterp,utf,&argc,(const char ***)&argv); switch(result) { case TCL_OK: { value res = copy_string_list(argc,argv); |