summaryrefslogtreecommitdiff
path: root/byte_copy.c
diff options
context:
space:
mode:
authorJoe Crayne <joe@jerkface.net>2019-10-12 22:44:43 -0400
committerJoe Crayne <joe@jerkface.net>2019-10-12 22:44:43 -0400
commit92bd9bda66884dbbb1f572f0cdf0063cea0b7d76 (patch)
tree8defc7f53599b8c906eae59332fef446e01524c7 /byte_copy.c
parentcdf1abf190f1097c4f6ae2ff0a9fa023df6982f1 (diff)
Applied debian patch to fix indentation warnings.
0015-fix-34-cases-of-Wmisleading-indentation-warnings.patch From: Jan <cloux@rote.ch> Date: Sat, 2 Mar 2019 21:47:29 +0100 Subject: fix: 34 cases of -Wmisleading-indentation warnings - fixed misleading indentation as reported by gcc 8.2.0
Diffstat (limited to 'byte_copy.c')
-rw-r--r--byte_copy.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/byte_copy.c b/byte_copy.c
index 74c9e4a..d33dacd 100644
--- a/byte_copy.c
+++ b/byte_copy.c
@@ -8,9 +8,13 @@ register unsigned int n;
8register char *from; 8register char *from;
9{ 9{
10 for (;;) { 10 for (;;) {
11 if (!n) return; *to++ = *from++; --n; 11 if (!n) return;
12 if (!n) return; *to++ = *from++; --n; 12 *to++ = *from++; --n;
13 if (!n) return; *to++ = *from++; --n; 13 if (!n) return;
14 if (!n) return; *to++ = *from++; --n; 14 *to++ = *from++; --n;
15 if (!n) return;
16 *to++ = *from++; --n;
17 if (!n) return;
18 *to++ = *from++; --n;
15 } 19 }
16} 20}