From 66e0e071520d8ce7236b103e48992fb939eaa09a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Fri, 12 Oct 2018 00:07:55 +0200 Subject: [PATCH] winevulkan: Remove unused variable in make_vulkan. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Janiszewski Signed-off-by: Józef Kucia Signed-off-by: Alexandre Julliard --- dlls/winevulkan/make_vulkan | 2 -- 1 file changed, 2 deletions(-) diff --git a/dlls/winevulkan/make_vulkan b/dlls/winevulkan/make_vulkan index ec861bda7d7..e96645d7458 100755 --- a/dlls/winevulkan/make_vulkan +++ b/dlls/winevulkan/make_vulkan @@ -1778,10 +1778,8 @@ class ConversionFunction(object): if self.direction == Direction.OUTPUT: params = ["const {0}_host *in".format(self.type), "{0} *out".format(self.type), "uint32_t count"] - return_type = self.type else: params = ["const {0} *in".format(self.type), "{0} *out_host".format(self.type), "uint32_t count"] - return_type = "{0}_host".format(self.type) # Generate function prototype. body = "static inline void {0}(".format(self.name)