Skip to content

Commit

Permalink
protos/limine: Correct panic message argument
Browse files Browse the repository at this point in the history
  • Loading branch information
marv7000 committed Oct 18, 2024
1 parent 5d8c87a commit 469e3b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/protos/limine.c
Original file line number Diff line number Diff line change
Expand Up @@ -1004,7 +1004,7 @@ FEAT_START
if (dtb_path) {
struct file_handle *dtb_file;
if ((dtb_file = uri_open(dtb_path)) == NULL)
panic(true, "limine: Failed to open device tree blob with path `%#`. Is the path correct?", kernel_path);
panic(true, "limine: Failed to open device tree blob with path `%#`. Is the path correct?", dtb_path);

dtb = freadall_mode(dtb_file, MEMMAP_BOOTLOADER_RECLAIMABLE, false
#if defined (__i386__)
Expand Down

0 comments on commit 469e3b5

Please sign in to comment.