summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-04-28 14:13:31 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-04-28 14:13:31 +0000
commit1cabc3cab152f8282f4e26e83f2d0402e684110f (patch)
tree9d5e5cfd22ad0f9d569afa43ee9c1062d97cc0c9
parenta76b0ed54d22da3d21c045ba8e0ecd6145900e69 (diff)
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
-rw-r--r--file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/file.c b/file.c
index d204b35c36..62f954ac40 100644
--- a/file.c
+++ b/file.c
@@ -81,9 +81,9 @@ typedef struct statvfs statfs_t;
#ifndef WITHOUT_STATFS
static VALUE rb_statfs_new(const statfs_t *st);
#if defined(HAVE_FSTATFS)
-#define FSTATFS(f, s) Fstatfs((f), (s))
+#define FSTATFS(f, s) fstatfs((f), (s))
#elif !defined(HAVE_FSTATVFS)
-#define FSTATFS(f, s) Fstatvfs((f), (s))
+#define FSTATFS(f, s) fstatvfs((f), (s))
#endif
#endif