Changeset dc5c303 in mainline for kernel/generic/src/console/kconsole.c
- Timestamp:
- 2023-12-28T13:59:23Z (2 years ago)
- 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)
- File:
-
- 1 edited
-
kernel/generic/src/console/kconsole.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/console/kconsole.c
r42c2e65 rdc5c303 85 85 SPINLOCK_INITIALIZE(cmd_lock); /**< Lock protecting command list. */ 86 86 LIST_INITIALIZE(cmd_list); /**< Command list. */ 87 88 #define MAX_SYMBOL_NAME 64 87 89 88 90 static char32_t history[KCONSOLE_HISTORY][MAX_CMDLINE] = { }; … … 597 599 /* It's a number - convert it */ 598 600 uint64_t value; 599 c har *end;601 const char *end; 600 602 errno_t rc = str_uint64_t(text, &end, 0, false, &value); 601 603 if (end != text + len)
Note:
See TracChangeset
for help on using the changeset viewer.
