diff --git a/libkc3/struct_type.c b/libkc3/struct_type.c
index f8dea91..1cf36e1 100644
--- a/libkc3/struct_type.c
+++ b/libkc3/struct_type.c
@@ -194,7 +194,7 @@ s_struct_type * struct_type_init (s_struct_type *st,
i++;
s = list_next(s);
}
- if (sizeof(long) == 4)
+ if (sizeof(long) == 4 && ! WIN64)
tmp.size = (offset + 3) / 4 * 4;
else {
#ifdef __APPLE__
diff --git a/msys2/clang64/Makefile b/msys2/clang64/Makefile
index 82e5769..6df089f 100644
--- a/msys2/clang64/Makefile
+++ b/msys2/clang64/Makefile
@@ -40,6 +40,7 @@ ${DEST_TMP}:
# cp -a "${SRC_TOP}/window/cairo/win32/.libs/libkc3_window_cairo_win32*-0.dll" ${DEST_TMP}
cp -a "${SRC_TOP}/window/cairo/win32/demo/.libs/kc3_window_cairo_win32_demo.exe" ${DEST_TMP}
cp -a "${SRC_TOP}/window/cairo/win32/demo/.libs/kc3_window_cairo_win32_demo_debug.exe" ${DEST_TMP}
+ cp -a "${SRC_TOP}"/window/sdl2/.libs/libkc3_window_sdl2*-0.dll ${DEST_TMP}
cp -a "${SRC_TOP}/window/sdl2/demo/.libs/kc3_window_sdl2_demo.exe" ${DEST_TMP}
cp -a "${SRC_TOP}/window/sdl2/demo/.libs/kc3_window_sdl2_demo_debug.exe" ${DEST_TMP}
cp -a "${SRC_TOP}/window/sdl2/kubz/.libs/kubz.exe" ${DEST_TMP}
diff --git a/test/markdown/to_html_str.out b/test/markdown/to_html_str.out
deleted file mode 100644
index e63e2a5..0000000
--- a/test/markdown/to_html_str.out
+++ /dev/null
@@ -1,4 +0,0 @@
-Markdown.to_html_str("Text.\n")
-"<p>Text.</p>\n"
-Markdown.to_html_str("# Title\nText.\n\n## Title 2\n")
-"<h1>Title</h1>\n<p>Text.</p>\n<h2>Title 2</h2>\n"