version: Remove 'return' from void function

Nikolay Sivov nsivov at codeweavers.com
Wed Dec 19 01:26:51 CST 2012


Remove 'return' from void function
-------------- next part --------------
>From 4b3205f9709aa32677d85468fd525443308b3dc4 Mon Sep 17 00:00:00 2001
From: Nikolay Sivov <nsivov at codeweavers.com>
Date: Wed, 19 Dec 2012 11:18:55 +0400
Subject: [PATCH 6/7] 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 e3e5c90..f19b3d7 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)
-- 
1.7.10.4




More information about the wine-patches mailing list