Reported by Tim Rühsen <tim.ruehsen@gmx.de>.
* lib/spawn-pipe.c: Disable clang -Wconditional-uninitialized warnings
in this file.
+2017-12-15 Bruno Haible <bruno@clisp.org>
+
+ spawn-pipe: Silence a clang warning.
+ Reported by Tim Rühsen <tim.ruehsen@gmx.de>.
+ * lib/spawn-pipe.c: Disable clang -Wconditional-uninitialized warnings
+ in this file.
+
2017-12-12 Paul Eggert <eggert@cs.ucla.edu>
explicit_bzero: port to macOS + Clang 9.0.0
along with this program. If not, see <https://www.gnu.org/licenses/>. */
+/* Tell clang not to warn about the 'child' variable, below. */
+#if defined __clang__
+# pragma clang diagnostic ignored "-Wconditional-uninitialized"
+#endif
+
#include <config.h>
/* Specification. */