Module: wine Branch: master Commit: b98f916dae61ff2f99482797e1e6cb77d2de02bc URL: http://source.winehq.org/git/wine.git/?a=commit;h=b98f916dae61ff2f99482797e1...
Author: Gerald Pfeifer gerald@pfeifer.com Date: Fri May 7 21:31:09 2010 +0200
oleaut32/tests: Remove variable changed which is not really used from test_SysReAllocStringLen.
---
dlls/oleaut32/tests/vartype.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/dlls/oleaut32/tests/vartype.c b/dlls/oleaut32/tests/vartype.c index 2ee5fea..c46ad8a 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");