Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
7ee81d7b
Commit
7ee81d7b
authored
Aug 13, 2006
by
Stefan Leichter
Committed by
Alexandre Julliard
Aug 14, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Print 64bit integers with wine_dbgstr_longlong.
parent
b3cf216d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
memory.c
programs/winedbg/memory.c
+3
-3
No files found.
programs/winedbg/memory.c
View file @
7ee81d7b
...
@@ -325,11 +325,11 @@ static void print_typed_basic(const struct dbg_lvalue* lvalue)
...
@@ -325,11 +325,11 @@ static void print_typed_basic(const struct dbg_lvalue* lvalue)
{
{
case
btInt
:
case
btInt
:
if
(
!
be_cpu
->
fetch_integer
(
lvalue
,
size
,
TRUE
,
&
val_int
))
return
;
if
(
!
be_cpu
->
fetch_integer
(
lvalue
,
size
,
TRUE
,
&
val_int
))
return
;
dbg_printf
(
"%
lld"
,
val_int
);
dbg_printf
(
"%
s"
,
wine_dbgstr_longlong
(
val_int
)
);
break
;
break
;
case
btUInt
:
case
btUInt
:
if
(
!
be_cpu
->
fetch_integer
(
lvalue
,
size
,
FALSE
,
&
val_int
))
return
;
if
(
!
be_cpu
->
fetch_integer
(
lvalue
,
size
,
FALSE
,
&
val_int
))
return
;
dbg_printf
(
"%
llu"
,
val_int
);
dbg_printf
(
"%
s"
,
wine_dbgstr_longlong
(
val_int
)
);
break
;
break
;
case
btFloat
:
case
btFloat
:
if
(
!
be_cpu
->
fetch_float
(
lvalue
,
size
,
&
val_real
))
return
;
if
(
!
be_cpu
->
fetch_float
(
lvalue
,
size
,
&
val_real
))
return
;
...
@@ -436,7 +436,7 @@ static void print_typed_basic(const struct dbg_lvalue* lvalue)
...
@@ -436,7 +436,7 @@ static void print_typed_basic(const struct dbg_lvalue* lvalue)
count
-=
min
(
count
,
256
);
count
-=
min
(
count
,
256
);
fcp
->
Start
+=
256
;
fcp
->
Start
+=
256
;
}
}
if
(
!
ok
)
dbg_printf
(
"%
lld"
,
val_int
);
if
(
!
ok
)
dbg_printf
(
"%
s"
,
wine_dbgstr_longlong
(
val_int
)
);
}
}
break
;
break
;
default:
default:
...
...
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