Dan Hipschman : widl: Remove an unnecessary assignment in write_pointers.
Module: wine Branch: master Commit: faf50715493df83b38e43176cb2d13c4149a0ed9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=faf50715493df83b38e43176cb... Author: Dan Hipschman <dsh(a)linux.ucla.edu> Date: Fri May 11 17:26:43 2007 -0700 widl: Remove an unnecessary assignment in write_pointers. --- tools/widl/typegen.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/tools/widl/typegen.c b/tools/widl/typegen.c index e8385ec..3bd133b 100644 --- a/tools/widl/typegen.c +++ b/tools/widl/typegen.c @@ -728,8 +728,7 @@ static int write_pointers(FILE *file, const attr_list_t *attrs, } else { - pointers_written = write_pointers(file, attrs, type->ref, array, - level + 1, typestring_offset); + write_pointers(file, attrs, type->ref, array, level + 1, typestring_offset); if (1 < level) {
participants (1)
-
Alexandre Julliard