fix msvc complain

git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@439 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-10-20 22:18:41 +00:00
parent 62bf7c04d6
commit 125bd59471

View File

@@ -75,7 +75,7 @@ MwInline void MwListBoxDelete(MwWidget handle, int index) {
*/
MwInline const char* MwListBoxGet(MwWidget handle, int index) {
const char* out;
MwWidgetExecute(handle, "mwListBoxGet", &out, index);
MwWidgetExecute(handle, "mwListBoxGet", (void*)&out, index);
return out;
};