mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fix preprocessor condition
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45739 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5aa94c6cdb
commit
c521d87f68
1 changed files with 1 additions and 1 deletions
2
file.c
2
file.c
|
@ -82,7 +82,7 @@ typedef struct statvfs statfs_t;
|
|||
static VALUE rb_statfs_new(const statfs_t *st);
|
||||
#if defined(HAVE_FSTATFS)
|
||||
#define FSTATFS(f, s) fstatfs((f), (s))
|
||||
#elif !defined(HAVE_FSTATVFS)
|
||||
#elif defined(HAVE_FSTATVFS)
|
||||
#define FSTATFS(f, s) fstatvfs((f), (s))
|
||||
#endif
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue