diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2016-04-15 11:41:34 +0200 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-04-15 16:24:45 +0200 |
commit | 9d063b690766af7d805ff015c0a0f69326ea3db7 (patch) | |
tree | eb3c55add260728c280dc35fd33819d4a2e08c30 /rts/LinkerInternals.h | |
parent | cb0d29b21ccadde681f80f9e414f78ab42a203c7 (diff) | |
download | haskell-9d063b690766af7d805ff015c0a0f69326ea3db7.tar.gz |
Linker: Fix signedness mismatch
Test Plan: Validate on OS X
Reviewers: erikd, austin, Phyx
Reviewed By: austin, Phyx
Subscribers: Phyx, thomie
Differential Revision: https://phabricator.haskell.org/D2110
GHC Trac Issues: #11828
Diffstat (limited to 'rts/LinkerInternals.h')
-rw-r--r-- | rts/LinkerInternals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/LinkerInternals.h b/rts/LinkerInternals.h index 4ff6e997c9..a34e6f3334 100644 --- a/rts/LinkerInternals.h +++ b/rts/LinkerInternals.h @@ -106,7 +106,7 @@ typedef struct _SymbolInfo { char* name; /* The address of the symbol. */ - unsigned char* addr; + void* addr; /* Indicates if the symbol is weak */ HsBool isWeak; |