summaryrefslogtreecommitdiff
path: root/rts/RetainerSet.c
diff options
context:
space:
mode:
Diffstat (limited to 'rts/RetainerSet.c')
-rw-r--r--rts/RetainerSet.c10
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 = {}
};
/* -----------------------------------------------------------------------------