[atomic] Fix warning, second time

Fixes https://bugzilla.mozilla.org/show_bug.cgi?id=1554306
diff --git a/src/hb-atomic.hh b/src/hb-atomic.hh
index e58ec75..45413d5 100644
--- a/src/hb-atomic.hh
+++ b/src/hb-atomic.hh
@@ -227,7 +227,7 @@
 
 #define hb_atomic_int_impl_add(AI, V)		((*(AI) += (V)) - (V))
 
-#define _hb_memory_barrier()
+#define _hb_memory_barrier()			do {} while (0)
 
 #define hb_atomic_ptr_impl_cmpexch(P,O,N)	(* (void **) (P) == (void *) (O) ? (* (void **) (P) = (void *) (N), true) : false)