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 #1201 from redstar/solaris
Browse files Browse the repository at this point in the history
Solaris: Change array declaration from C to D style.
  • Loading branch information
9rnsr committed Mar 29, 2015
2 parents cfe938a + 0324983 commit 3656ba9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/sys/solaris/sys/elf.d
Expand Up @@ -29,7 +29,7 @@ enum EI_NIDENT = 16;

struct Elf32_Ehdr
{
char e_ident[EI_NIDENT];
char[EI_NIDENT] e_ident;
Elf32_Half e_type;
Elf32_Half e_machine;
Elf32_Word e_version;
Expand All @@ -47,7 +47,7 @@ struct Elf32_Ehdr

struct Elf64_Ehdr
{
char e_ident[EI_NIDENT];
char[EI_NIDENT] e_ident;
Elf64_Half e_type;
Elf64_Half e_machine;
Elf64_Word e_version;
Expand Down

0 comments on commit 3656ba9

Please sign in to comment.