Ignore:
Timestamp:
2023-12-28T13:59:23Z (2 years ago)
Author:
GitHub <noreply@…>
Children:
6b66de6b
Parents:
42c2e65 (diff), f87ff8e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
boba-buba <120932204+boba-buba@…> (2023-12-28 13:59:23)
git-committer:
GitHub <noreply@…> (2023-12-28 13:59:23)
Message:

Merge branch 'master' into topic/packet-capture

File:
1 edited

Legend:

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

    r42c2e65 rdc5c303  
    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.