mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* dir.c (glob_func_caller): add prototype to get rid of warning.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2864 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a28c0eecbb
commit
a1ea7b6d56
2 changed files with 11 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Fri Sep 13 23:39:49 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
||||||
|
|
||||||
|
* dir.c (glob_func_caller): add prototype to get rid of warning.
|
||||||
|
|
||||||
Fri Sep 13 18:35:12 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
Fri Sep 13 18:35:12 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
||||||
|
|
||||||
* eval.c (rb_eval): avoid uninitialized global/class variable
|
* eval.c (rb_eval): avoid uninitialized global/class variable
|
||||||
|
@ -29,7 +33,7 @@ Thu Sep 12 00:09:32 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
||||||
Wed Sep 11 21:25:52 2002 Tanaka Akira <akr@m17n.org>
|
Wed Sep 11 21:25:52 2002 Tanaka Akira <akr@m17n.org>
|
||||||
|
|
||||||
* pp.rb (ARGF.pretty_print): implemented.
|
* pp.rb (ARGF.pretty_print): implemented.
|
||||||
(PP.pp): arguments reordered.
|
(PP.pp): arguments reordered.
|
||||||
|
|
||||||
Wed Sep 11 18:55:38 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
Wed Sep 11 18:55:38 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
||||||
|
|
||||||
|
@ -126,7 +130,7 @@ Tue Sep 10 18:26:52 2002 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||||
Tue Sep 10 17:16:14 2002 NAKAMURA Usaku <usa@ruby-lang.org>
|
Tue Sep 10 17:16:14 2002 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
* win32/Makefile.sub (miniruby): shouldn't link $(EXTOBJS).
|
* win32/Makefile.sub (miniruby): shouldn't link $(EXTOBJS).
|
||||||
[ruby-dev:17059]
|
[ruby-dev:17059]
|
||||||
|
|
||||||
* win32/Makefile.sub ($(LIBRUBY_A), $(LIBRUBY)): avoid lib.exe's
|
* win32/Makefile.sub ($(LIBRUBY_A), $(LIBRUBY)): avoid lib.exe's
|
||||||
warning. [ruby-dev:17059]
|
warning. [ruby-dev:17059]
|
||||||
|
|
7
dir.c
7
dir.c
|
@ -659,10 +659,13 @@ struct glob_args {
|
||||||
VALUE v;
|
VALUE v;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static VALUE glob_func_caller _((VALUE));
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
glob_func_caller(args)
|
glob_func_caller(val)
|
||||||
struct glob_args *args;
|
VALUE val;
|
||||||
{
|
{
|
||||||
|
struct glob_args *args = (struct glob_args *)val;
|
||||||
(*args->func)(args->c, args->v);
|
(*args->func)(args->c, args->v);
|
||||||
return Qnil;
|
return Qnil;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue