From f3f81387f10c44ea091fed828f9960aeada53f0c Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Wed, 19 Dec 2012 11:18:55 +0400 Subject: [PATCH] version: Remove 'return' from void function. --- dlls/version/tests/info.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/dlls/version/tests/info.c b/dlls/version/tests/info.c index e3e5c90fa06..f19b3d707fd 100644 --- a/dlls/version/tests/info.c +++ b/dlls/version/tests/info.c @@ -194,8 +194,6 @@ static void VersionDwordLong2String(DWORDLONG Version, LPSTR lpszVerString) d = (WORD)(Version & 0xffff); sprintf(lpszVerString, "%d.%d.%d.%d", a, b, c, d); - - return; } static void test_info(void)