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

ruby-changes:56448

From: git <ko1@a...>
Date: Sun, 14 Jul 2019 14:04:46 +0900 (JST)
Subject: [ruby-changes:56448] git: ff5b149435 (master): * expand tabs.

https://git.ruby-lang.org/ruby.git/commit/?id=ff5b149435

From ff5b149435f6ae167df6cc8a17ad49b4c92209f1 Mon Sep 17 00:00:00 2001
From: git <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>
Date: Sun, 14 Jul 2019 14:04:34 +0900
Subject: * expand tabs.


diff --git a/marshal.c b/marshal.c
index 8f4a0ae..7cd4756 100644
--- a/marshal.c
+++ b/marshal.c
@@ -370,12 +370,12 @@ load_mantissa(double d, const char *buf, long len) https://github.com/ruby/ruby/blob/trunk/marshal.c#L370
 	do {
 	    m = 0;
 	    switch (len) {
-	      default: m = *buf++ & 0xff; /* fall through */
+              default: m = *buf++ & 0xff; /* fall through */
 #if MANT_BITS > 24
-	      case 3: m = (m << 8) | (*buf++ & 0xff); /* fall through */
+              case 3: m = (m << 8) | (*buf++ & 0xff); /* fall through */
 #endif
 #if MANT_BITS > 16
-	      case 2: m = (m << 8) | (*buf++ & 0xff); /* fall through */
+              case 2: m = (m << 8) | (*buf++ & 0xff); /* fall through */
 #endif
 #if MANT_BITS > 8
 	      case 1: m = (m << 8) | (*buf++ & 0xff);
-- 
cgit v0.10.2


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

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