From 5efa6b2e48907328cea7d6713db116d01a7b8aef Mon Sep 17 00:00:00 2001 From: eban Date: Sat, 23 Mar 2002 16:07:55 +0000 Subject: * util.c (push_element): avoid warning for djgpp. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2263 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- util.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'util.c') diff --git a/util.c b/util.c index 512b00b47a..feb7004d52 100644 --- a/util.c +++ b/util.c @@ -316,9 +316,10 @@ struct PathInfo { }; static void -push_element(char *path, struct PathInfo *info) +push_element(const char *path, VALUE vinfo) { struct PathList *p; + struct PathInfo *info = (struct PathInfo *)vinfo; p = ALLOC(struct PathList); MEMZERO(p, struct PathList, 1); -- cgit v1.2.3