Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ppc32/src/mm/pht.c

    r38dc82d r63e27ef  
    3535#include <arch/mm/pht.h>
    3636#include <arch/mm/tlb.h>
     37#include <assert.h>
    3738#include <interrupt.h>
    3839#include <mm/as.h>
     
    7980                found = page_mapping_find(as, badvaddr, true, pte);
    8081
    81                 ASSERT(found);
    82                 ASSERT(pte->present);
     82                assert(found);
     83                assert(pte->present);
    8384
    8485                return found;
Note: See TracChangeset for help on using the changeset viewer.