Austin English : twain32: Fix a compiler warning on PC-BSD.

Alexandre Julliard julliard at winehq.org
Wed Mar 25 10:31:29 CDT 2009


Module: wine
Branch: master
Commit: dca3117f036cd9289d4753d3021e89ae531de8d9
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=dca3117f036cd9289d4753d3021e89ae531de8d9

Author: Austin English <austinenglish at gmail.com>
Date:   Tue Mar 24 15:40:36 2009 -0400

twain32: Fix a compiler warning on PC-BSD.

---

 dlls/twain_32/tests/dsm.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/twain_32/tests/dsm.c b/dlls/twain_32/tests/dsm.c
index 6a53188..0cc8220 100644
--- a/dlls/twain_32/tests/dsm.c
+++ b/dlls/twain_32/tests/dsm.c
@@ -482,8 +482,8 @@ static void test_supported_sizes(TW_IDENTITY *appid, TW_IDENTITY *source, TW_INT
     TW_UINT32 val;
     TW_UINT16 type;
     TW_INT32 actual_support;
-    TW_UINT32 orig_value;
-    TW_UINT32 default_value;
+    TW_UINT32 orig_value = TWSS_NONE;
+    TW_UINT32 default_value = TWSS_NONE;
     TW_UINT32 new_value = TWSS_NONE;
 
 




More information about the wine-cvs mailing list