From 6ac891beaf396d9d425c68b03237ef58be014baf Mon Sep 17 00:00:00 2001 From: John Hodge Date: Sat, 15 Mar 2014 15:59:01 +0800 Subject: [PATCH] Modules/UDI - Fix use of 'bool' as a variable name --- KernelLand/Modules/Interfaces/UDI/udi_lib/core/logging.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KernelLand/Modules/Interfaces/UDI/udi_lib/core/logging.c b/KernelLand/Modules/Interfaces/UDI/udi_lib/core/logging.c index eef10709..ed24359a 100644 --- a/KernelLand/Modules/Interfaces/UDI/udi_lib/core/logging.c +++ b/KernelLand/Modules/Interfaces/UDI/udi_lib/core/logging.c @@ -43,7 +43,7 @@ void __udi_assert(const char *expr, const char *file, int line) UNIMPLEMENTED(); } -void udi_assert(udi_boolean_t bool) +void udi_assert(udi_boolean_t bool_value) { UNIMPLEMENTED(); } -- 2.20.1