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

Commit

Permalink
fix for 64 bits
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterBright committed Nov 28, 2011
1 parent 1b1b37e commit 550a9c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rt/memory_osx.d
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ struct SegRef
enum SegRef[5] dataSegs = [{SEG_DATA, SECT_DATA},
{SEG_DATA, SECT_BSS},
{SEG_DATA, SECT_COMMON},
// These two must match names used by compiler machobj.c
// These two must match names used by compiler machobj.c
{SEG_DATA, "__tls_data"},
{SEG_DATA, "__tlscoal_nt"}];

Expand Down Expand Up @@ -71,7 +71,7 @@ ubyte[] getSection(in mach_header* header, intptr_t slide,
return null;
}
else
return null;
return null;
}


Expand Down

0 comments on commit 550a9c2

Please sign in to comment.