From 2f00f6d8f1a94d08c058cbd4f224cc734f3cea6a Mon Sep 17 00:00:00 2001 From: "R. Timothy Edwards" Date: Wed, 18 Feb 2026 19:15:14 -0500 Subject: [PATCH] Corrected an error in the output of string properties when writing .mag files caused by the last commit---Failure to put a space between the key and the value. Fixed. --- database/DBio.c | 1 + 1 file changed, 1 insertion(+) diff --git a/database/DBio.c b/database/DBio.c index f30c4546..30c49176 100644 --- a/database/DBio.c +++ b/database/DBio.c @@ -4124,6 +4124,7 @@ dbWritePropFunc(key, proprec, cdata) switch (proprec->prop_type) { case PROPERTY_TYPE_STRING: + FPUTSR(f, " "); FPUTSR(f, proprec->prop_value.prop_string); break; case PROPERTY_TYPE_INTEGER: