From 330a48d3452b126216ba3dfbcf4761d1b7feb917 Mon Sep 17 00:00:00 2001 From: Maschell Date: Fri, 19 Feb 2021 17:08:51 +0100 Subject: [PATCH] Fix error message --- source/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/main.cpp b/source/main.cpp index 3656e2c..6c73bcd 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -16,10 +16,10 @@ bool elfLinkOne(char type, size_t offset, int32_t addend, uint32_t destination, WUMS_RELOCATIONS_DONE(args) { module_information_t *gModuleData = args.module_information; if (args.module_information == NULL) { - OSFatal("DynLoadPatcher: Failed to get gModuleData pointer."); + OSFatal("PatchMemoryRelocations: Failed to get gModuleData pointer."); } if (args.module_information->version != MODULE_INFORMATION_VERSION) { - OSFatal("DynLoadPatcher: The module information struct version does not match."); + OSFatal("PatchMemoryRelocations: The module information struct version does not match."); } WHBLogUdpInit();