From: John Hodge Date: Sat, 15 Mar 2014 07:59:01 +0000 (+0800) Subject: Modules/UDI - Fix use of 'bool' as a variable name X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=6ac891beaf396d9d425c68b03237ef58be014baf;p=tpg%2Facess2.git Modules/UDI - Fix use of 'bool' as a variable name --- 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(); }