From 393ad20577c7fa66928ecb34bc8b323feb881ea5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Tue, 29 Jan 2013 21:57:58 +0100 Subject: [PATCH] spoolss: Fix two size elements in the devmode private spoolss_JTEXP struct. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Guenther Signed-off-by: Günther Deschner Reviewed-by: David Disseldorp --- librpc/idl/spoolss.idl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/librpc/idl/spoolss.idl b/librpc/idl/spoolss.idl index a43449b04a8..57e6b497980 100644 --- a/librpc/idl/spoolss.idl +++ b/librpc/idl/spoolss.idl @@ -427,8 +427,8 @@ cpp_quote("#define spoolss_security_descriptor security_descriptor") uint32 dwSize; [value(SPOOLSS_DM_SIGNATURE_JTEXP)] spoolss_DM_Signature dwSignature; [value(0)] uint32 dwVersion; - [value(16)] uint32 wJTHdrSize; - uint32 wCoreMFOSize; + [value(16)] uint16 wJTHdrSize; + uint16 wCoreMFOSize; [string,charset(UTF16)] uint16 *ModelName; nstring_array FeatureOptionPairs; } spoolss_JTEXP; -- 2.11.4.GIT