From 92bd9bda66884dbbb1f572f0cdf0063cea0b7d76 Mon Sep 17 00:00:00 2001 From: Joe Crayne Date: Sat, 12 Oct 2019 22:44:43 -0400 Subject: Applied debian patch to fix indentation warnings. 0015-fix-34-cases-of-Wmisleading-indentation-warnings.patch From: Jan 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 --- byte_copy.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'byte_copy.c') 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; register char *from; { for (;;) { - if (!n) return; *to++ = *from++; --n; - if (!n) return; *to++ = *from++; --n; - if (!n) return; *to++ = *from++; --n; - if (!n) return; *to++ = *from++; --n; + if (!n) return; + *to++ = *from++; --n; + if (!n) return; + *to++ = *from++; --n; + if (!n) return; + *to++ = *from++; --n; + if (!n) return; + *to++ = *from++; --n; } } -- cgit v1.2.3