From baead67a993f7c130f332fc62e7bc9c1044c51a4 Mon Sep 17 00:00:00 2001 From: Nikita Smith Date: Sat, 26 Oct 2024 22:00:29 -0700 Subject: [PATCH] minor fixes --- src/linker/lnk.c | 2 +- src/linker/lnk_config.c | 2 +- src/pe/pe.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/linker/lnk.c b/src/linker/lnk.c index de02bd6e..16c81df0 100644 --- a/src/linker/lnk.c +++ b/src/linker/lnk.c @@ -10,7 +10,7 @@ #define BUILD_VERSION_PATCH 13 #define BUILD_RELEASE_PHASE_STRING_LITERAL "ALPHA" #define BUILD_VERSION_STRING Stringify(BUILD_VERSION_MAJOR) "." Stringify(BUILD_VERSION_MINOR) "." Stringify(BUILD_VERSION_PATCH) -#define BUILD_TITLE "Epic Games Tools (R) RAD PE/COFF Linker " BUILD_VERSION_STRING +#define BUILD_TITLE "Epic Games Tools (R) RAD COFF/PE Linker " BUILD_VERSION_STRING //////////////////////////////// diff --git a/src/linker/lnk_config.c b/src/linker/lnk_config.c index 0fcc08d2..16357b05 100644 --- a/src/linker/lnk_config.c +++ b/src/linker/lnk_config.c @@ -789,7 +789,7 @@ lnk_print_help(void) Temp scratch = scratch_begin(0,0); fprintf(stdout, "--- Help -------------------------------------------------------\n"); - fprintf(stdout, " %s\n", BUILD_VERSION_STRING); + fprintf(stdout, " %s\n", BUILD_TITLE); fprintf(stdout, "\n"); fprintf(stdout, " Usage: rad-link.exe [Options] [Files] [@rsp]\n"); fprintf(stdout, "\n"); diff --git a/src/pe/pe.h b/src/pe/pe.h index 331dd3a6..8ae78db7 100644 --- a/src/pe/pe.h +++ b/src/pe/pe.h @@ -399,7 +399,7 @@ struct PE_ImportEntry typedef struct PE_DelayedImportEntry PE_DelayedImportEntry; struct PE_DelayedImportEntry { - // According to PE/COFF spec this field is unused and should be set zero, + // According to COFF/PE spec this field is unused and should be set zero, // but when I compile mule with MSVC 2019 this is set to 1. U32 attributes; U32 name_voff; // Name of the DLL