mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* dln_find.c: parenthesize macro arguments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30166 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a18a4811a0
commit
e14a0042d2
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri Dec 10 22:33:39 2010 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* dln_find.c: parenthesize macro arguments.
|
||||
|
||||
Fri Dec 10 20:05:42 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* template/id.h.tmpl (ruby_method_ids): suppress warnings.
|
||||
|
|
|
@ -57,7 +57,7 @@ void *xrealloc();
|
|||
#include <sys/stat.h>
|
||||
|
||||
#ifndef S_ISDIR
|
||||
# define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
|
||||
# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_SYS_PARAM_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue