From 132293449de246bb19abf453fde06fcfa22fe402 Mon Sep 17 00:00:00 2001 From: Vicki Pfau <vi@endrift.com> Date: Tue, 31 Dec 2024 16:51:50 -0800 Subject: [PATCH] Scripting: Attempt to fix Windows build --- src/core/scripting.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/core/scripting.c b/src/core/scripting.c index 3b331b5b7..f409b4782 100644 --- a/src/core/scripting.c +++ b/src/core/scripting.c @@ -834,12 +834,12 @@ static void _scriptDebuggerEntered(struct mDebuggerModule* debugger, enum mDebug }; cbInfo.type->alloc(&cbInfo); - static struct mScriptValue keyAddress = mSCRIPT_MAKE_CHARP("address"); - static struct mScriptValue keyWidth = mSCRIPT_MAKE_CHARP("width"); - static struct mScriptValue keySegment = mSCRIPT_MAKE_CHARP("segment"); - static struct mScriptValue keyOldValue = mSCRIPT_MAKE_CHARP("oldValue"); - static struct mScriptValue keyNewValue = mSCRIPT_MAKE_CHARP("newValue"); - static struct mScriptValue keyAccessType = mSCRIPT_MAKE_CHARP("accessType"); + static struct mScriptValue keyAddress = mSCRIPT_CHARP("address"); + static struct mScriptValue keyWidth = mSCRIPT_CHARP("width"); + static struct mScriptValue keySegment = mSCRIPT_CHARP("segment"); + static struct mScriptValue keyOldValue = mSCRIPT_CHARP("oldValue"); + static struct mScriptValue keyNewValue = mSCRIPT_CHARP("newValue"); + static struct mScriptValue keyAccessType = mSCRIPT_CHARP("accessType"); struct mScriptValue valAddress = mSCRIPT_MAKE_U32(info->address); struct mScriptValue valWidth = mSCRIPT_MAKE_S32(info->width);