Changeset 63e27ef in mainline for kernel/genarch/src/fb/fb.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/genarch/src/fb/fb.c

    r7354b5e r63e27ef  
    3434 */
    3535
     36#include <assert.h>
     37#include <debug.h>
    3638#include <genarch/fb/font-8x16.h>
    3739#include <genarch/fb/fb.h>
     
    511513outdev_t *fb_init(fb_properties_t *props)
    512514{
    513         ASSERT(props);
    514         ASSERT(props->x > 0);
    515         ASSERT(props->y > 0);
    516         ASSERT(props->scan > 0);
     515        assert(props);
     516        assert(props->x > 0);
     517        assert(props->y > 0);
     518        assert(props->scan > 0);
    517519       
    518520        rgb_conv_t rgb_conv;
Note: See TracChangeset for help on using the changeset viewer.