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
5c06fb0b
Commit
5c06fb0b
authored
Jun 05, 2007
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jun 06, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedos: Fix printf format warnings introduced by the TEB change in thread.h.
parent
49a20d1a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
int31.c
dlls/winedos/int31.c
+3
-3
No files found.
dlls/winedos/int31.c
View file @
5c06fb0b
...
@@ -1347,21 +1347,21 @@ void WINAPI DOSVM_Int31Handler( CONTEXT86 *context )
...
@@ -1347,21 +1347,21 @@ void WINAPI DOSVM_Int31Handler( CONTEXT86 *context )
break
;
break
;
case
0x0900
:
/* Get and Disable Virtual Interrupt State */
case
0x0900
:
/* Get and Disable Virtual Interrupt State */
TRACE
(
"Get and Disable Virtual Interrupt State: %
ld
\n
"
,
TRACE
(
"Get and Disable Virtual Interrupt State: %
d
\n
"
,
NtCurrentTeb
()
->
dpmi_vif
);
NtCurrentTeb
()
->
dpmi_vif
);
SET_AL
(
context
,
NtCurrentTeb
()
->
dpmi_vif
?
1
:
0
);
SET_AL
(
context
,
NtCurrentTeb
()
->
dpmi_vif
?
1
:
0
);
NtCurrentTeb
()
->
dpmi_vif
=
0
;
NtCurrentTeb
()
->
dpmi_vif
=
0
;
break
;
break
;
case
0x0901
:
/* Get and Enable Virtual Interrupt State */
case
0x0901
:
/* Get and Enable Virtual Interrupt State */
TRACE
(
"Get and Enable Virtual Interrupt State: %
ld
\n
"
,
TRACE
(
"Get and Enable Virtual Interrupt State: %
d
\n
"
,
NtCurrentTeb
()
->
dpmi_vif
);
NtCurrentTeb
()
->
dpmi_vif
);
SET_AL
(
context
,
NtCurrentTeb
()
->
dpmi_vif
?
1
:
0
);
SET_AL
(
context
,
NtCurrentTeb
()
->
dpmi_vif
?
1
:
0
);
NtCurrentTeb
()
->
dpmi_vif
=
1
;
NtCurrentTeb
()
->
dpmi_vif
=
1
;
break
;
break
;
case
0x0902
:
/* Get Virtual Interrupt State */
case
0x0902
:
/* Get Virtual Interrupt State */
TRACE
(
"Get Virtual Interrupt State: %
ld
\n
"
,
TRACE
(
"Get Virtual Interrupt State: %
d
\n
"
,
NtCurrentTeb
()
->
dpmi_vif
);
NtCurrentTeb
()
->
dpmi_vif
);
SET_AL
(
context
,
NtCurrentTeb
()
->
dpmi_vif
?
1
:
0
);
SET_AL
(
context
,
NtCurrentTeb
()
->
dpmi_vif
?
1
:
0
);
break
;
break
;
...
...
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