From 8d5186484b28b5f629b523e067d7d5166eec557a Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 2 May 2011 20:52:21 -0400 Subject: [PATCH] Cosmetic --- src/hb-private.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-private.hh b/src/hb-private.hh index 02fc099..445f602 100644 --- a/src/hb-private.hh +++ b/src/hb-private.hh @@ -253,7 +253,7 @@ typedef GStaticMutex hb_mutex_t; typedef volatile int hb_atomic_int_t; #define hb_atomic_int_fetch_and_add(AI, V) ((AI) += (V), (AI) - (V)) #define hb_atomic_int_get(AI) (AI) -#define hb_atomic_int_set(AI, V) HB_STMT_START { (AI) = (V); } HB_STMT_END +#define hb_atomic_int_set(AI, V) ((void) ((AI) = (V))) typedef volatile int hb_mutex_t; #define HB_MUTEX_INIT 0 -- 2.7.4