summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgit <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-07-14 14:04:34 +0900
committergit <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-07-14 14:04:34 +0900
commitff5b149435f6ae167df6cc8a17ad49b4c92209f1 (patch)
treee5084093fccf07261fb6b5836134f1494d85b7e3
parentba94404f7021fae41a827e080be6d5dd0bbac8e4 (diff)
* expand tabs.
-rw-r--r--marshal.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/marshal.c b/marshal.c
index 8f4a0aeb80..7cd4756fd0 100644
--- a/marshal.c
+++ b/marshal.c
@@ -370,12 +370,12 @@ load_mantissa(double d, const char *buf, long len)
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);