Module: wine Branch: master Commit: 554a2ccb117817c869ab5643aa5de67b09c3d165 URL: http://source.winehq.org/git/wine.git/?a=commit;h=554a2ccb117817c869ab5643aa...
Author: Austin English austinenglish@gmail.com Date: Wed Dec 19 14:55:46 2012 -0600
widl: write_array_element_type shouldn't return a value.
---
tools/widl/typegen.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tools/widl/typegen.c b/tools/widl/typegen.c index 280bd05..cab4276 100644 --- a/tools/widl/typegen.c +++ b/tools/widl/typegen.c @@ -2343,7 +2343,7 @@ static void write_array_element_type(FILE *file, const type_t *type, return; } } - return write_member_type(file, type, cont_is_complex, NULL, elem, NULL, tfsoff); + write_member_type(file, type, cont_is_complex, NULL, elem, NULL, tfsoff); }
static void write_end(FILE *file, unsigned int *tfsoff)