From: Piotr Kubaj Date: Sat, 12 Nov 2022 00:51:22 +0000 (+0100) Subject: Correct indents X-Git-Tag: 2.1.0-beta1~108 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd321660c916266cd98b496212114ba29d48aaed;p=thirdparty%2Fzlib-ng.git Correct indents --- diff --git a/arch/power/power_features.c b/arch/power/power_features.c index 62fc9495c..0614ff0f2 100644 --- a/arch/power/power_features.c +++ b/arch/power/power_features.c @@ -8,7 +8,7 @@ # include #endif #ifdef __FreeBSD__ -#include +# include #endif #include "../../zbuild.h" #include "power_features.h" diff --git a/configure b/configure index 5e21b449b..8dae722a6 100755 --- a/configure +++ b/configure @@ -744,10 +744,10 @@ cat > $test.c < int main() { #ifdef __FreeBSD__ -int test; -return elf_aux_info(AT_PAGESZ, &test, sizeof(test)); + int test; + return elf_aux_info(AT_PAGESZ, &test, sizeof(test)); #else -return getauxval(0); + return getauxval(0); #endif } EOF @@ -1255,11 +1255,11 @@ EOF #include int main() { #ifdef __FreeBSD__ -unsigned long hwcap; -elf_aux_info(AT_HWCAP, &hwcap, sizeof(hwcap)); -return (hwcap & PPC_FEATURE_HAS_ALTIVEC); + unsigned long hwcap; + elf_aux_info(AT_HWCAP, &hwcap, sizeof(hwcap)); + return (hwcap & PPC_FEATURE_HAS_ALTIVEC); #else -return (getauxval(AT_HWCAP) & PPC_FEATURE_HAS_ALTIVEC); + return (getauxval(AT_HWCAP) & PPC_FEATURE_HAS_ALTIVEC); #endif } EOF @@ -1281,11 +1281,11 @@ check_power8_intrinsics() { #include int main() { #ifdef __FreeBSD__ -unsigned long hwcap; -elf_aux_info(AT_HWCAP2, &hwcap, sizeof(hwcap)); -return (hwcap & PPC_FEATURE2_ARCH_2_07); + unsigned long hwcap; + elf_aux_info(AT_HWCAP2, &hwcap, sizeof(hwcap)); + return (hwcap & PPC_FEATURE2_ARCH_2_07); #else -return (getauxval(AT_HWCAP2) & PPC_FEATURE2_ARCH_2_07); + return (getauxval(AT_HWCAP2) & PPC_FEATURE2_ARCH_2_07); #endif } EOF