]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
common: remove spurious uint32_t in buffer.c 2313/head
authorLoic Dachary <loic-201408@dachary.org>
Sun, 24 Aug 2014 19:48:16 +0000 (21:48 +0200)
committerLoic Dachary <loic-201408@dachary.org>
Sun, 24 Aug 2014 19:49:15 +0000 (21:49 +0200)
Signed-off-by: Loic Dachary <loic-201408@dachary.org>
src/common/buffer.cc

index f2b1e06743222b281a8ca7b56bd90fc6adc69c46..7617c2f530b8b37b42d33314ab33a5fb3689f9d8 100644 (file)
@@ -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