Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
887aa9eb
Commit
887aa9eb
authored
Sep 05, 2008
by
Lei Zhang
Committed by
Alexandre Julliard
Sep 08, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sane.ds: Replace wsprintfW with sprintfW.
parent
e605d3e9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
ui.c
dlls/sane.ds/ui.c
+3
-2
No files found.
dlls/sane.ds/ui.c
View file @
887aa9eb
...
...
@@ -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
=
w
sprintfW
(
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
=
w
sprintfW
(
buffer
,
formatW
,
dd
);
len
=
sprintfW
(
buffer
,
formatW
,
dd
);
}
else
return
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment