winevulkan: Remove unused variable in make_vulkan.

Signed-off-by: Michał Janiszewski <janisozaur@gmail.com>
Signed-off-by: Józef Kucia <jkucia@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michał Janiszewski 2018-10-12 00:07:55 +02:00 committed by Alexandre Julliard
parent 03800be0da
commit 66e0e07152
1 changed files with 0 additions and 2 deletions

View File

@ -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)