Ignore:
Timestamp:
2017-06-19T21:47:42Z (8 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/console/kconsole.c

    r7354b5e r63e27ef  
    3939 */
    4040
     41#include <assert.h>
    4142#include <console/kconsole.h>
    4243#include <console/console.h>
     
    633634    size_t *start, size_t *end)
    634635{
    635         ASSERT(start != NULL);
    636         ASSERT(end != NULL);
     636        assert(start != NULL);
     637        assert(end != NULL);
    637638       
    638639        bool found_start = false;
Note: See TracChangeset for help on using the changeset viewer.