Changeset 102f641 in mainline for uspace/srv/sysman/log.c


Ignore:
Timestamp:
2019-09-02T19:01:50Z (6 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
25697163
Parents:
241f1985
Message:

Correcting syntax according to ccheck

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/sysman/log.c

    r241f1985 r102f641  
    3939static log_level_t max_level = LVL_NOTE;
    4040
    41 extern void sysman_log_init(log_level_t level)
     41void sysman_log_init(log_level_t level)
    4242{
    4343        max_level = level;
     
    5151        va_list args;
    5252        va_start(args, fmt);
    53        
     53
    5454        vprintf(fmt, args);
    5555        printf("\n");
Note: See TracChangeset for help on using the changeset viewer.