From b98f916dae61ff2f99482797e1e6cb77d2de02bc Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Fri, 7 May 2010 21:31:09 +0200 Subject: [PATCH] oleaut32/tests: Remove variable changed which is not really used from test_SysReAllocStringLen. --- dlls/oleaut32/tests/vartype.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dlls/oleaut32/tests/vartype.c b/dlls/oleaut32/tests/vartype.c index 2ee5fea8b5e..c46ad8aa01e 100644 --- a/dlls/oleaut32/tests/vartype.c +++ b/dlls/oleaut32/tests/vartype.c @@ -5444,9 +5444,7 @@ static void test_SysReAllocStringLen(void) ok(str != NULL, "Expected non-NULL\n"); if(str) { - int changed; - - changed = SysReAllocStringLen(&str, str, 1000000); + SysReAllocStringLen(&str, str, 1000000); ok(SysStringLen(str)==1000000, "Incorrect string length\n"); ok(!memcmp(szTest, str, 4*sizeof(WCHAR)), "Incorrect string returned\n");