From 93e88acdc67c8ace88f8dc7d0eb8a0c98cf3c172 Mon Sep 17 00:00:00 2001 From: knu Date: Sun, 4 Mar 2007 14:20:24 +0000 Subject: * util.c (push_element): should return a int value. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_6@11983 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- util.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'util.c') diff --git a/util.c b/util.c index a95bddbf6..c9c7d1166 100644 --- a/util.c +++ b/util.c @@ -316,7 +316,7 @@ struct PathInfo { int count; }; -static void +static int push_element(const char *path, VALUE vinfo) { struct PathList *p; @@ -328,6 +328,8 @@ push_element(const char *path, VALUE vinfo) p->next = info->head; info->head = p; info->count++; + + return 0; } #include -- cgit