Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Fix typo in type name.
Browse files Browse the repository at this point in the history
  • Loading branch information
redstar committed Nov 29, 2014
1 parent 5c16984 commit 595e5b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/sys/linux/elf.d
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@ extern (D)
{
auto ELF32_M_SYM(I)(I info) { return info >> 8; }
auto ELF32_M_SIZE(I)(I info) { return cast(ubyte)info; }
auto ELF32_M_INFO(S, SZ)(S sym, SZ size) { return (sym << 8) + cast(ubye)size; }
auto ELF32_M_INFO(S, SZ)(S sym, SZ size) { return (sym << 8) + cast(ubyte)size; }
}

alias ELF32_M_SYM ELF64_M_SYM;
Expand Down

0 comments on commit 595e5b9

Please sign in to comment.