Ignore:
Timestamp:
2018-04-12T16:27:17Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3cf22f9
Parents:
76d0981d
git-author:
Jiri Svoboda <jiri@…> (2018-04-11 19:25:33)
git-committer:
Jiri Svoboda <jiri@…> (2018-04-12 16:27:17)
Message:

Make ccheck-fix again and commit more good files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/console/kconsole.c

    r76d0981d r3bacee1  
    8686LIST_INITIALIZE(cmd_list);      /**< Command list. */
    8787
    88 static wchar_t history[KCONSOLE_HISTORY][MAX_CMDLINE] = {};
     88static wchar_t history[KCONSOLE_HISTORY][MAX_CMDLINE] = { };
    8989static size_t history_pos = 0;
    9090
     
    166166const char *cmdtab_enum(const char *name, const char **h, void **ctx)
    167167{
    168         link_t **startpos = (link_t**) ctx;
     168        link_t **startpos = (link_t **) ctx;
    169169        size_t namelen = str_length(name);
    170170
     
    376376                                beg = position - 1;
    377377                                while ((beg > 0) && (!isspace(current[beg])))
    378                                     beg--;
     378                                        beg--;
    379379
    380380                                if (isspace(current[beg]))
Note: See TracChangeset for help on using the changeset viewer.