Ignore:
File:
1 edited

Legend:

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

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