From 441cee090013b0a3d05a9a870f3422e3f696fc7b Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Tue, 6 Feb 2024 16:39:30 +1300 Subject: [PATCH] fix segmentation fault --- initial.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/initial.d b/initial.d index 02e8b19..a338af3 100644 --- a/initial.d +++ b/initial.d @@ -180,7 +180,7 @@ struct INIUnit void opIndexAssign(string v, string k) { - this[defaultSection][k] = v; + sections[defaultSection][k] = v; } /++ @@ -189,7 +189,7 @@ struct INIUnit void opIndexAssign(INISection v, string sect) { - this[sect] = v; + sections[sect] = v; } }