Changes in kernel/generic/src/console/kconsole.c [24abb85d:b2e121a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/console/kconsole.c
r24abb85d rb2e121a 52 52 #include <macros.h> 53 53 #include <debug.h> 54 #include < func.h>54 #include <halt.h> 55 55 #include <str.h> 56 56 #include <sysinfo/sysinfo.h> … … 563 563 564 564 uintptr_t symaddr; 565 int rc = symtab_addr_lookup(symname, &symaddr);565 errno_t rc = symtab_addr_lookup(symname, &symaddr); 566 566 switch (rc) { 567 567 case ENOENT: … … 591 591 uint64_t value; 592 592 char *end; 593 int rc = str_uint64_t(text, &end, 0, false, &value);593 errno_t rc = str_uint64_t(text, &end, 0, false, &value); 594 594 if (end != text + len) 595 595 rc = EINVAL;
Note:
See TracChangeset
for help on using the changeset viewer.