Module: wine Branch: stable Commit: d50bcaa378759de33aa9d459027fd0f4e9f050ea URL: http://source.winehq.org/git/wine.git/?a=commit;h=d50bcaa378759de33aa9d45902...
Author: Lei Zhang thestig@google.com Date: Fri Sep 5 08:21:32 2008 -0700
sane.ds: Replace wsprintfW with sprintfW. (cherry picked from commit 887aa9eb3dd3fc22d4f50df125080f5fc82b583c)
---
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;