Ignore:
File:
1 edited

Legend:

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

    r583c2a3 rfdfb24e  
    8585SPINLOCK_INITIALIZE(cmd_lock);  /**< Lock protecting command list. */
    8686LIST_INITIALIZE(cmd_list);      /**< Command list. */
     87
     88#define MAX_SYMBOL_NAME 64
    8789
    8890static char32_t history[KCONSOLE_HISTORY][MAX_CMDLINE] = { };
     
    597599                /* It's a number - convert it */
    598600                uint64_t value;
    599                 char *end;
     601                const char *end;
    600602                errno_t rc = str_uint64_t(text, &end, 0, false, &value);
    601603                if (end != text + len)
Note: See TracChangeset for help on using the changeset viewer.