From 9fb6af9640994b6216897d3a6ce89362aea22f6a Mon Sep 17 00:00:00 2001 From: Moshe Zadka Date: Fri, 4 Aug 2000 21:27:47 +0000 Subject: [PATCH] Removing warnings by gcc -Wall -- cast ugly || to void. --- Python/pystate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/pystate.c b/Python/pystate.c index b9dee6e763a..1cd9cca8fea 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -22,7 +22,7 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #ifdef WITH_THREAD #include "pythread.h" static PyThread_type_lock head_mutex = NULL; /* Protects interp->tstate_head */ -#define HEAD_INIT() (head_mutex || (head_mutex = PyThread_allocate_lock())) +#define HEAD_INIT() (void)(head_mutex || (head_mutex = PyThread_allocate_lock())) #define HEAD_LOCK() PyThread_acquire_lock(head_mutex, WAIT_LOCK) #define HEAD_UNLOCK() PyThread_release_lock(head_mutex) #else