Changeset 87bc11f in mainline for kernel/generic/src/main/kinit.c


Ignore:
Timestamp:
2019-05-18T21:43:08Z (5 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
d49194d
Parents:
985e0f15
git-author:
Matthieu Riolo <matthieu.riolo@…> (2019-05-17 14:27:34)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2019-05-18 21:43:08)
Message:

Removing printf when failing from lib/rtld

If rtld failed a message was printed with printf.
This has been replaced with DPRINTF which
gives control to the developer over the message

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/main/kinit.c

    r985e0f15 r87bc11f  
    291291                        log(LF_OTHER, LVL_ERROR,
    292292                            "init[%zu]: Init binary load failed "
    293                             "(error %s, loader status %u)", i,
    294                             str_error_name(rc), programs[i].loader_status);
     293                            "(error %s, loader status %s)", i,
     294                            str_error_name(rc), str_error_name(programs[i].loader_status));
    295295                }
    296296        }
Note: See TracChangeset for help on using the changeset viewer.