Changeset 63e27ef in mainline for kernel/generic/src/console/cmd.c


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/console/cmd.c

    r7354b5e r63e27ef  
    4141 */
    4242
     43#include <assert.h>
    4344#include <console/cmd.h>
    4445#include <console/console.h>
     
    5455#include <str.h>
    5556#include <macros.h>
    56 #include <debug.h>
    5757#include <cpu.h>
    5858#include <mm/tlb.h>
     
    917917int cmd_uptime(cmd_arg_t *argv)
    918918{
    919         ASSERT(uptime);
     919        assert(uptime);
    920920       
    921921        /* This doesn't have to be very accurate */
Note: See TracChangeset for help on using the changeset viewer.