Lei Zhang : sane.ds: Replace wsprintfW with sprintfW.

Alexandre Julliard julliard at winehq.org
Mon Sep 8 07:41:11 CDT 2008


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

Author: Lei Zhang <thestig at google.com>
Date:   Fri Sep  5 08:21:32 2008 -0700

sane.ds: Replace wsprintfW with sprintfW.

---

 dlls/sane.ds/ui.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dlls/sane.ds/ui.c b/dlls/sane.ds/ui.c
index 83006c5..236a91d 100644
--- a/dlls/sane.ds/ui.c
+++ b/dlls/sane.ds/ui.c
@@ -36,6 +36,7 @@
 #include "sane_i.h"
 #include "wine/debug.h"
 #include "resource.h"
+#include "wine/unicode.h"
 
 #ifdef SONAME_LIBSANE
 
@@ -622,7 +623,7 @@ static void UpdateRelevantEdit(HWND hwnd, const SANE_Option_Descriptor *opt,
         else
             si = position;
 
-        len = wsprintfW( buffer, formatW, si );
+        len = sprintfW( buffer, formatW, si );
     }
     else if  (opt->type == SANE_TYPE_FIXED)
     {
@@ -636,7 +637,7 @@ static void UpdateRelevantEdit(HWND hwnd, const SANE_Option_Descriptor *opt,
         else
             dd = position * 0.01;
 
-        len = wsprintfW( buffer, formatW, dd );
+        len = sprintfW( buffer, formatW, dd );
     }
     else return;
 




More information about the wine-cvs mailing list