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
d1110dd2
Commit
d1110dd2
authored
Mar 08, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Mar 09, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Remove spaces before '\n's.
parent
ae28fdb5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
be_i386.c
programs/winedbg/be_i386.c
+5
-4
No files found.
programs/winedbg/be_i386.c
View file @
d1110dd2
...
...
@@ -173,10 +173,11 @@ static void be_i386_all_print_context(HANDLE hThread, const CONTEXT* ctx)
dbg_printf
(
")
\n
"
);
/* Here are the rest of the registers */
dbg_printf
(
" FLES:%08x "
,
(
unsigned
int
)
ctx
->
FloatSave
.
ErrorSelector
);
dbg_printf
(
" FLDO:%08x "
,
(
unsigned
int
)
ctx
->
FloatSave
.
DataOffset
);
dbg_printf
(
" FLDS:%08x "
,
(
unsigned
int
)
ctx
->
FloatSave
.
DataSelector
);
dbg_printf
(
" FLCNS:%08x
\n
"
,
(
unsigned
int
)
ctx
->
FloatSave
.
Cr0NpxState
);
dbg_printf
(
" FLES:%08x FLDO:%08x FLDS:%08x FLCNS:%08x
\n
"
,
ctx
->
FloatSave
.
ErrorSelector
,
ctx
->
FloatSave
.
DataOffset
,
ctx
->
FloatSave
.
DataSelector
,
ctx
->
FloatSave
.
Cr0NpxState
);
/* Now for the floating point registers */
dbg_printf
(
"Floating Point Registers:
\n
"
);
...
...
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