diff options
author | Andreas Kling <kling@serenityos.org> | 2021-04-29 21:46:15 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-29 22:16:18 +0200 |
commit | 7ae7170d6140f7cad730f05f84b53437058b82f4 (patch) | |
tree | 79caaefa15a1e4ae1c60def7a40425983206c281 /Userland/Libraries/LibELF | |
parent | def1f1444aeee2caf6d47d0eb96a18ffc476c3f9 (diff) | |
download | serenity-7ae7170d6140f7cad730f05f84b53437058b82f4.zip |
Everywhere: "file name" => "filename"
Diffstat (limited to 'Userland/Libraries/LibELF')
-rw-r--r-- | Userland/Libraries/LibELF/AuxiliaryVector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibELF/AuxiliaryVector.h b/Userland/Libraries/LibELF/AuxiliaryVector.h index bad82fadf9..3524e9c9fb 100644 --- a/Userland/Libraries/LibELF/AuxiliaryVector.h +++ b/Userland/Libraries/LibELF/AuxiliaryVector.h @@ -42,7 +42,7 @@ typedef struct #define AT_BASE_PLATFORM 24 /* a_ptr points to a string identifying base platform name, which might be different from platform (e.g x86_64 when in i386 compat) */ #define AT_RANDOM 25 /* a_ptr points to 16 securely generated random bytes */ #define AT_HWCAP2 26 /* a_val holds extended hw feature mask. Currently 0 */ -#define AT_EXECFN 31 /* a_ptr points to file name of executed program */ +#define AT_EXECFN 31 /* a_ptr points to filename of executed program */ #define AT_EXE_BASE 32 /* a_ptr holds base address where main program was loaded into memory */ #define AT_EXE_SIZE 33 /* a_val holds the size of the main program in memory */ |