diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-07-12 12:31:09 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-07-16 23:50:36 -0400 |
commit | 03c69d8d1ffeb85055d71f6c144c18309a13308f (patch) | |
tree | bb0e00f4e6a2441f351ef11e05627d4d41fd0f26 /rts/LinkerInternals.h | |
parent | cdd3be20684c696d9008b6ca7c83731adb13e1b6 (diff) | |
download | haskell-03c69d8d1ffeb85055d71f6c144c18309a13308f.tar.gz |
rts/linker/PEi386: Rename finit field to fini
fini is short for "finalizer", which does not contain a "t".
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 503d281a71..71a939f8c0 100644 --- a/rts/LinkerInternals.h +++ b/rts/LinkerInternals.h @@ -100,7 +100,7 @@ typedef /* Static initializer section. e.g. .ctors. */ SECTIONKIND_INIT_ARRAY, /* Static finalizer section. e.g. .dtors. */ - SECTIONKIND_FINIT_ARRAY, + SECTIONKIND_FINI_ARRAY, /* We don't know what the section is and don't care. */ SECTIONKIND_OTHER, /* Section contains debug information. e.g. .debug$. */ |