From 6846668fd779cf7ffb79ebf08b93ec60be56045d Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Sat, 16 Oct 2021 20:58:54 +0200 Subject: [PATCH] runime_loader: fix typo from hrev55497 --- src/system/runtime_loader/elf_load_image.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/runtime_loader/elf_load_image.cpp b/src/system/runtime_loader/elf_load_image.cpp index 44526bebf1..32f8cb6a26 100644 --- a/src/system/runtime_loader/elf_load_image.cpp +++ b/src/system/runtime_loader/elf_load_image.cpp @@ -526,7 +526,7 @@ load_image(char const* name, image_type type, const char* rpath, fd = open_executable(path, type, rpath, get_program_path(), requestingObjectPath, sSearchPathSubDir); if (fd < 0) { - FATAL("Cannot open file %s(needed by %s): %s\n", name, requestingObjectPath, strerror(fd)); + FATAL("Cannot open file %s (needed by %s): %s\n", name, requestingObjectPath, strerror(fd)); KTRACE("rld: load_container(\"%s\"): failed to open file", name); return fd; }