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

ruby-changes:35537

From: normal <ko1@a...>
Date: Thu, 18 Sep 2014 07:01:46 +0900 (JST)
Subject: [ruby-changes:35537] normal:r47619 (trunk): ext/zlib/zlib.c (struct gzfile): pack (288 => 272 bytes) on 64-bit

normal	2014-09-18 07:01:31 +0900 (Thu, 18 Sep 2014)

  New Revision: 47619

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

  Log:
    ext/zlib/zlib.c (struct gzfile): pack (288 => 272 bytes) on 64-bit

  Modified files:
    trunk/ChangeLog
    trunk/ext/zlib/zlib.c
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 47618)
+++ ChangeLog	(revision 47619)
@@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Thu Sep 18 06:41:18 2014  Eric Wong  <e@8...>
+
+	* ext/zlib/zlib.c (struct gzfile): pack (288 => 272 bytes) on 64-bit
+
 Thu Sep 18 05:44:05 2014  Eric Wong  <e@8...>
 
 	* ext/socket/init.c (rsock_connect): refactor for blocking
Index: ext/zlib/zlib.c
===================================================================
--- ext/zlib/zlib.c	(revision 47618)
+++ ext/zlib/zlib.c	(revision 47619)
@@ -2197,18 +2197,18 @@ struct gzfile { https://github.com/ruby/ruby/blob/trunk/ext/zlib/zlib.c#L2197
     struct zstream z;
     VALUE io;
     int level;
-    time_t mtime;       /* for header */
     int os_code;        /* for header */
+    time_t mtime;       /* for header */
     VALUE orig_name;    /* for header; must be a String */
     VALUE comment;      /* for header; must be a String */
     unsigned long crc;
+    int ecflags;
     int lineno;
     long ungetc;
     void (*end)(struct gzfile *);
     rb_encoding *enc;
     rb_encoding *enc2;
     rb_econv_t *ec;
-    int ecflags;
     VALUE ecopts;
     char *cbuf;
     VALUE path;

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

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