0b26f7
commit a996d13b8a2e101bedbb1bdaa7ffcfea3b959bb2
0b26f7
Author: Florian Weimer <fweimer@redhat.com>
0b26f7
Date:   Thu Sep 30 18:44:06 2021 +0200
0b26f7
0b26f7
    Add missing braces to bsearch inline implementation [BZ #28400]
0b26f7
    
0b26f7
    GCC treats the pragma as a statement, so that the else branch only
0b26f7
    consists of the pragma, not the return statement.
0b26f7
    
0b26f7
    Fixes commit a725ff1de965f4cc4f36a7e8ae795d40ca0350d7 ("Suppress
0b26f7
    -Wcast-qual warnings in bsearch").
0b26f7
    
0b26f7
    Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
0b26f7
    (cherry picked from commit 32b96d0dec0294465d2221a8f049703599d9d8e4)
0b26f7
0b26f7
diff --git a/bits/stdlib-bsearch.h b/bits/stdlib-bsearch.h
0b26f7
index d688ed2e15678e9c..e2fcea6e172af72c 100644
0b26f7
--- a/bits/stdlib-bsearch.h
0b26f7
+++ b/bits/stdlib-bsearch.h
0b26f7
@@ -36,14 +36,16 @@ bsearch (const void *__key, const void *__base, size_t __nmemb, size_t __size,
0b26f7
       else if (__comparison > 0)
0b26f7
 	__l = __idx + 1;
0b26f7
       else
0b26f7
+	{
0b26f7
 #if __GNUC_PREREQ(4, 6)
0b26f7
 # pragma GCC diagnostic push
0b26f7
 # pragma GCC diagnostic ignored "-Wcast-qual"
0b26f7
 #endif
0b26f7
-	return (void *) __p;
0b26f7
+	  return (void *) __p;
0b26f7
 #if __GNUC_PREREQ(4, 6)
0b26f7
 # pragma GCC diagnostic pop
0b26f7
 #endif
0b26f7
+	}
0b26f7
     }
0b26f7
 
0b26f7
   return NULL;