From: Michael R Sweet Date: Sat, 21 Jan 2023 22:00:14 +0000 (-0500) Subject: Fix Windows compile error. X-Git-Tag: v2.4.3~62 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=efff7da3e74745246f1340c18f4fc4d4352d1498;p=thirdparty%2Fcups.git Fix Windows compile error. --- diff --git a/cups/usersys.c b/cups/usersys.c index 977f6ef80b..8332fd670a 100644 --- a/cups/usersys.c +++ b/cups/usersys.c @@ -595,7 +595,7 @@ cupsSetUserAgent(const char *user_agent)/* I - User-Agent string or @code NULL@ typedef NTSTATUS(WINAPI * RtlGetVersionPtr)(PRTL_OSVERSIONINFOW); - memset(&version, 0, sizeof(version)) + memset(&version, 0, sizeof(version)); version.dwOSVersionInfoSize = sizeof(version); /* RtlGetVersion gets the current native version of Windows, even when running in compatibility mode */