From 372c7fca588f93a7ff67e2f22f3b1b1d22e00839 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Wed, 23 Feb 2011 20:45:59 +0100 Subject: [PATCH] winedump: Remove double assignment (Coverity). --- tools/winedump/msc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/winedump/msc.c b/tools/winedump/msc.c index 950eb599353..e56b4aa320a 100644 --- a/tools/winedump/msc.c +++ b/tools/winedump/msc.c @@ -202,7 +202,7 @@ static const char* full_value_string(const struct full_value* fv) static int numeric_leaf(int* value, const unsigned short int* leaf) { struct full_value fv; - int len = len = full_numeric_leaf(&fv, leaf); + int len = full_numeric_leaf(&fv, leaf); switch (fv.type) {