From 1e88c1e4bd36d144cb7c08f434209e48aa560170 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Fri, 14 Jun 2013 18:07:01 -0400 Subject: [PATCH] rcuja: Fix missing return type warning Signed-off-by: Mathieu Desnoyers --- rcuja/rcuja-internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rcuja/rcuja-internal.h b/rcuja/rcuja-internal.h index 18ad288..d379348 100644 --- a/rcuja/rcuja-internal.h +++ b/rcuja/rcuja-internal.h @@ -263,13 +263,13 @@ do { \ #ifdef DEBUG_COUNTERS static inline -ja_debug_counters(void) +int ja_debug_counters(void) { return 1; } #else static inline -ja_debug_counters(void) +int ja_debug_counters(void) { return 0; } -- 2.34.1