From: Loic Dachary Date: Sun, 24 Aug 2014 19:48:16 +0000 (+0200) Subject: common: remove spurious uint32_t in buffer.c X-Git-Tag: v0.86~201^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f7c0001aaf104cf4703074bc66563d8aad290f6b;p=ceph.git common: remove spurious uint32_t in buffer.c Signed-off-by: Loic Dachary --- diff --git a/src/common/buffer.cc b/src/common/buffer.cc index f2b1e0674322..7617c2f530b8 100644 --- a/src/common/buffer.cc +++ b/src/common/buffer.cc @@ -33,7 +33,7 @@ namespace ceph { #ifdef BUFFER_DEBUG -static uint32_t simple_spinlock_t buffer_debug_lock = SIMPLE_SPINLOCK_INITIALIZER; +static simple_spinlock_t buffer_debug_lock = SIMPLE_SPINLOCK_INITIALIZER; # define bdout { simple_spin_lock(&buffer_debug_lock); std::cout # define bendl std::endl; simple_spin_unlock(&buffer_debug_lock); } #else