From d836f432f47c38b0512eae2faf4cd03b30304785 Mon Sep 17 00:00:00 2001 From: eban Date: Tue, 15 Jul 2003 07:56:21 +0000 Subject: * ext/syck/emitter.c (syck_emitter_start_obj): cast to avoid warning. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4074 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/syck/emitter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/syck/emitter.c b/ext/syck/emitter.c index 08c280fea..1927b7e1e 100644 --- a/ext/syck/emitter.c +++ b/ext/syck/emitter.c @@ -290,7 +290,7 @@ syck_emitter_start_obj( SyckEmitter *e, SYMID oid ) */ args->startpos = n->pos; args->offset = alen + 1; - st_foreach( e->anchors, syck_adjust_anchors, args ); + st_foreach( e->anchors, syck_adjust_anchors, (st_data_t)args ); S_FREE( args ); /* -- cgit