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