diff options
Diffstat (limited to 'sys/boot/ficl')
-rw-r--r-- | sys/boot/ficl/ficl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/ficl/ficl.c b/sys/boot/ficl/ficl.c index d4370eb..219cf84 100644 --- a/sys/boot/ficl/ficl.c +++ b/sys/boot/ficl/ficl.c @@ -276,7 +276,7 @@ void ficlFreeVM(FICL_VM *pVM) FICL_SYSTEM *pSys = pVM->pSys; FICL_VM *pList = pSys->vmList; - assert(pVM != 0); + assert(pVM != NULL); if (pSys->vmList == pVM) { |