From 6388a118d25187297782547c762a840482c5f715 Mon Sep 17 00:00:00 2001 From: "J.C. Jones" Date: Mon, 27 Jan 2020 15:26:40 +0100 Subject: [PATCH] Bug 1602386 - clang-format r=bustage --- lib/freebl/blinit.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/freebl/blinit.c b/lib/freebl/blinit.c index 01f036ea70..7e8adfc64c 100644 --- a/lib/freebl/blinit.c +++ b/lib/freebl/blinit.c @@ -451,12 +451,12 @@ CheckPPCSupport() #if defined(__linux__) hwcaps = getauxval(AT_HWCAP2); #elif defined(__FreeBSD__) -# if __FreeBSD__ >= 12 +#if __FreeBSD__ >= 12 elf_aux_info(AT_HWCAP2, &hwcaps, sizeof(hwcaps)); -# else +#else size_t len = sizeof(hwcaps); sysctlbyname("hw.cpu_features2", &hwcaps, &len, NULL, 0); -# endif +#endif #endif ppc_crypto_support_ = hwcaps & PPC_FEATURE2_VEC_CRYPTO && disable_hw_crypto == NULL;