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

Commit

Permalink
Merge pull request #1050 from redstar/typo
Browse files Browse the repository at this point in the history
Fix typo in type name.
  • Loading branch information
MartinNowak committed Nov 30, 2014
2 parents b552f9e + 595e5b9 commit 85dd75b
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 85dd75b

Please sign in to comment.