file.c: fix typo
* file.c (FSTATFS): fix typo and commit miss. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45736 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a76b0ed54d
commit
1cabc3cab1
4
file.c
4
file.c
@ -81,9 +81,9 @@ typedef struct statvfs statfs_t;
|
|||||||
#ifndef WITHOUT_STATFS
|
#ifndef WITHOUT_STATFS
|
||||||
static VALUE rb_statfs_new(const statfs_t *st);
|
static VALUE rb_statfs_new(const statfs_t *st);
|
||||||
#if defined(HAVE_FSTATFS)
|
#if defined(HAVE_FSTATFS)
|
||||||
#define FSTATFS(f, s) Fstatfs((f), (s))
|
#define FSTATFS(f, s) fstatfs((f), (s))
|
||||||
#elif !defined(HAVE_FSTATVFS)
|
#elif !defined(HAVE_FSTATVFS)
|
||||||
#define FSTATFS(f, s) Fstatvfs((f), (s))
|
#define FSTATFS(f, s) fstatvfs((f), (s))
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user