diff options
author | Austin Seipp <austin@well-typed.com> | 2014-11-18 21:21:47 -0600 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-11-19 17:03:04 -0600 |
commit | 8e0a480ca655010e67a38aca9b8705ecbd0f0c97 (patch) | |
tree | b88fd35b9b70d7de8251eda7b783fda9d8094ebe /rts/RetainerSet.c | |
parent | 4ba884bdd3a9521ea92fcda8f601a7d0f3537bc1 (diff) | |
download | haskell-8e0a480ca655010e67a38aca9b8705ecbd0f0c97.tar.gz |
rts: remove old-style field designator extension (#9396)
Authored-by: jrp
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'rts/RetainerSet.c')
-rw-r--r-- | rts/RetainerSet.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/rts/RetainerSet.c b/rts/RetainerSet.c index 1905866e8a..234532a879 100644 --- a/rts/RetainerSet.c +++ b/rts/RetainerSet.c @@ -40,11 +40,11 @@ static int nextId; // id of next retainer set * from growing too large. * -------------------------------------------------------------------------- */ RetainerSet rs_MANY = { - num : 0, - hashKey : 0, - link : NULL, - id : 1, - element : {} + .num = 0, + .hashKey = 0, + .link = NULL, + .id = 1, + .element = {} }; /* ----------------------------------------------------------------------------- |