Ignore:
Timestamp:
2017-06-19T21:47:42Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
deacc58d
Parents:
7354b5e
Message:

ASSERT → assert

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/interrupt/interrupt.c

    r7354b5e r63e27ef  
    4040 */
    4141
     42#include <assert.h>
    4243#include <interrupt.h>
    43 #include <debug.h>
    4444#include <console/kconsole.h>
    4545#include <console/console.h>
     
    7676{
    7777#if (IVT_ITEMS > 0)
    78         ASSERT(n < IVT_ITEMS);
     78        assert(n < IVT_ITEMS);
    7979#endif
    8080       
     
    102102{
    103103#if (IVT_ITEMS > 0)
    104         ASSERT(n < IVT_ITEMS);
     104        assert(n < IVT_ITEMS);
    105105#endif
    106106       
Note: See TracChangeset for help on using the changeset viewer.