diff options
author | Ben Gamari <ben@smart-cactus.org> | 2017-04-04 16:15:32 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-04-04 16:57:01 -0400 |
commit | ff267f37788eb47e1d9da15bf396eccec4297bf6 (patch) | |
tree | 0d9b9e50b2cbd4a79c1a479eaf86df0d13bb657e /rts/LinkerInternals.h | |
parent | 7e340c2bbf4a56959bd1e95cdd1cfdb2b7e537c2 (diff) | |
download | haskell-ff267f37788eb47e1d9da15bf396eccec4297bf6.tar.gz |
rts: Fix lingering #ifs
These were missed in D3278.
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 a04db77b92..02fe167829 100644 --- a/rts/LinkerInternals.h +++ b/rts/LinkerInternals.h @@ -175,7 +175,7 @@ typedef struct _ObjectCode { unsigned int pltIndex; #endif -#if NEED_SYMBOL_EXTRAS +#if defined(NEED_SYMBOL_EXTRAS) SymbolExtra *symbol_extras; unsigned long first_symbol_extra; unsigned long n_symbol_extras; |