Ignore:
File:
1 edited

Legend:

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

    r24abb85d rb2e121a  
    5252#include <macros.h>
    5353#include <debug.h>
    54 #include <func.h>
     54#include <halt.h>
    5555#include <str.h>
    5656#include <sysinfo/sysinfo.h>
     
    563563               
    564564                uintptr_t symaddr;
    565                 int rc = symtab_addr_lookup(symname, &symaddr);
     565                errno_t rc = symtab_addr_lookup(symname, &symaddr);
    566566                switch (rc) {
    567567                case ENOENT:
     
    591591                uint64_t value;
    592592                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);
    594594                if (end != text + len)
    595595                        rc = EINVAL;
Note: See TracChangeset for help on using the changeset viewer.