summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dbus/dbus-sysdeps-win.c2
-rwxr-xr-xtools/ci-build.sh2
-rwxr-xr-xtools/ci-install.sh2
3 files changed, 5 insertions, 1 deletions
diff --git a/dbus/dbus-sysdeps-win.c b/dbus/dbus-sysdeps-win.c
index 32126bbc..e9de9340 100644
--- a/dbus/dbus-sysdeps-win.c
+++ b/dbus/dbus-sysdeps-win.c
@@ -126,7 +126,7 @@ load_ex_ip_helper_procedures(void)
return FALSE;
}
- lpfnAllocateAndGetTcpExTableFromStack = (ProcAllocateAndGetTcpExtTableFromStack)GetProcAddress (hModule, "AllocateAndGetTcpExTableFromStack");
+ lpfnAllocateAndGetTcpExTableFromStack = (ProcAllocateAndGetTcpExtTableFromStack) (void (*)(void))GetProcAddress (hModule, "AllocateAndGetTcpExTableFromStack");
if (lpfnAllocateAndGetTcpExTableFromStack == NULL)
{
_dbus_verbose ("could not find function AllocateAndGetTcpExTableFromStack in iphlpapi.dll\n");
diff --git a/tools/ci-build.sh b/tools/ci-build.sh
index f77f11c2..856a65a8 100755
--- a/tools/ci-build.sh
+++ b/tools/ci-build.sh
@@ -130,6 +130,8 @@ init_wine() {
# One of static, shared; used for windows cross builds
: "${ci_runtime:=static}"
+echo "ci_buildsys=$ci_buildsys ci_distro=$ci_distro ci_docker=$ci_docker ci_host=$ci_host ci_local_packages=$ci_local_packages ci_parallel=$ci_parallel ci_suite=$ci_suite ci_test=$ci_test ci_test_fatal=$ci_test_fatal ci_variant=$ci_variant ci_runtime=$ci_runtime $0"
+
if [ -n "$ci_docker" ]; then
exec docker run \
--env=ci_buildsys="${ci_buildsys}" \
diff --git a/tools/ci-install.sh b/tools/ci-install.sh
index d6c8246f..5b3b1b2f 100755
--- a/tools/ci-install.sh
+++ b/tools/ci-install.sh
@@ -62,6 +62,8 @@ NULL=
# One of debug, reduced, legacy, production
: "${ci_variant:=production}"
+echo "ci_distro=$ci_distro ci_docker=$ci_docker ci_in_docker=$ci_in_docker ci_host=$ci_host ci_local_packages=$ci_local_packages ci_suite=$ci_suite ci_variant=$ci_variant $0"
+
if [ $(id -u) = 0 ]; then
sudo=
else