From ec7f664403a0598b08140902edcbc37f7270d1f7 Mon Sep 17 00:00:00 2001 From: aoki_ryoma Date: Wed, 9 Jul 2008 23:52:39 +0000 Subject: [PATCH] =?UTF-8?q?SDK=5Fassert=E3=81=AE=E4=B8=AD=E8=BA=AB?= =?UTF-8?q?=E3=81=8C=E9=96=93=E9=81=95=E3=81=A3=E3=81=A6=E3=81=84=E3=81=9F?= =?UTF-8?q?=E3=81=AE=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@1834 b08762b0-b915-fc4b-9d8c-17b2551a87ff --- build/libraries_sysmenu/errorLog/ARM9/src/errorLog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/libraries_sysmenu/errorLog/ARM9/src/errorLog.c b/build/libraries_sysmenu/errorLog/ARM9/src/errorLog.c index ea06c435..61c827eb 100644 --- a/build/libraries_sysmenu/errorLog/ARM9/src/errorLog.c +++ b/build/libraries_sysmenu/errorLog/ARM9/src/errorLog.c @@ -78,8 +78,8 @@ static char *s_strError[FATAL_ERROR_MAX]; *---------------------------------------------------------------------------*/ BOOL EL_Init( void* (*AllocFunc) (u32) , void (*FreeFunc) (void*) ) { - SDK_POINTER_ASSERT(allocFunc); - SDK_POINTER_ASSERT(freeFunc); + SDK_POINTER_ASSERT(AllocFunc); + SDK_POINTER_ASSERT(FreeFunc); elWork.Alloc = AllocFunc; elWork.Free = FreeFunc;