diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ext/tcltklib/tcltklib.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Fri Sep 10 20:18:05 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> + + * ext/tcltklib/tcltklib.c (lib_merge_tklist): fix suspicious + pointer conversion. + Fri Sep 10 19:16:24 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> * bcc32/Makefile.sub: bccwin32 port starts to use RTL dll. diff --git a/ext/tcltklib/tcltklib.c b/ext/tcltklib/tcltklib.c index 0a2fcbd34..53c51e4fd 100644 --- a/ext/tcltklib/tcltklib.c +++ b/ext/tcltklib/tcltklib.c @@ -5067,7 +5067,7 @@ lib_merge_tklist(argc, argv, obj) old_gc = rb_gc_disable(); /* based on Tcl/Tk's Tcl_Merge() */ - flagPtr = ALLOC_N(unsigned, argc); + flagPtr = ALLOC_N(int, argc); /* pass 1 */ len = 1; |