[前][次][番号順一覧][スレッド一覧]

ruby-changes:33655

From: nobu <ko1@a...>
Date: Mon, 28 Apr 2014 23:13:37 +0900 (JST)
Subject: [ruby-changes:33655] nobu:r45736 (trunk): file.c: fix typo

nobu	2014-04-28 23:13:31 +0900 (Mon, 28 Apr 2014)

  New Revision: 45736

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=45736

  Log:
    file.c: fix typo
    
    * file.c (FSTATFS): fix typo and commit miss.

  Modified files:
    trunk/file.c
Index: file.c
===================================================================
--- file.c	(revision 45735)
+++ file.c	(revision 45736)
@@ -81,9 +81,9 @@ typedef struct statvfs statfs_t; https://github.com/ruby/ruby/blob/trunk/file.c#L81
 #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
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]