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
98e24868
Commit
98e24868
authored
May 23, 2008
by
Eric Pouech
Committed by
Alexandre Julliard
May 27, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Removed unneeded variable from print_basic.
parent
ac2053ba
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
debugger.h
programs/winedbg/debugger.h
+1
-1
memory.c
programs/winedbg/memory.c
+1
-1
types.c
programs/winedbg/types.c
+1
-1
No files found.
programs/winedbg/debugger.h
View file @
98e24868
...
@@ -367,7 +367,7 @@ extern BOOL memory_disasm_one_insn(ADDRESS64* addr);
...
@@ -367,7 +367,7 @@ extern BOOL memory_disasm_one_insn(ADDRESS64* addr);
extern
char
*
memory_offset_to_string
(
char
*
str
,
DWORD64
offset
,
unsigned
mode
);
extern
char
*
memory_offset_to_string
(
char
*
str
,
DWORD64
offset
,
unsigned
mode
);
extern
void
print_bare_address
(
const
ADDRESS64
*
addr
);
extern
void
print_bare_address
(
const
ADDRESS64
*
addr
);
extern
void
print_address
(
const
ADDRESS64
*
addr
,
BOOLEAN
with_line
);
extern
void
print_address
(
const
ADDRESS64
*
addr
,
BOOLEAN
with_line
);
extern
void
print_basic
(
const
struct
dbg_lvalue
*
value
,
int
count
,
char
format
);
extern
void
print_basic
(
const
struct
dbg_lvalue
*
value
,
char
format
);
/* source.c */
/* source.c */
extern
void
source_list
(
IMAGEHLP_LINE
*
src1
,
IMAGEHLP_LINE
*
src2
,
int
delta
);
extern
void
source_list
(
IMAGEHLP_LINE
*
src1
,
IMAGEHLP_LINE
*
src2
,
int
delta
);
...
...
programs/winedbg/memory.c
View file @
98e24868
...
@@ -464,7 +464,7 @@ static void print_typed_basic(const struct dbg_lvalue* lvalue)
...
@@ -464,7 +464,7 @@ static void print_typed_basic(const struct dbg_lvalue* lvalue)
*
*
* Implementation of the 'print' command.
* Implementation of the 'print' command.
*/
*/
void
print_basic
(
const
struct
dbg_lvalue
*
lvalue
,
int
count
,
char
format
)
void
print_basic
(
const
struct
dbg_lvalue
*
lvalue
,
char
format
)
{
{
if
(
lvalue
->
type
.
id
==
dbg_itype_none
)
if
(
lvalue
->
type
.
id
==
dbg_itype_none
)
{
{
...
...
programs/winedbg/types.c
View file @
98e24868
...
@@ -457,7 +457,7 @@ void print_value(const struct dbg_lvalue* lvalue, char format, int level)
...
@@ -457,7 +457,7 @@ void print_value(const struct dbg_lvalue* lvalue, char format, int level)
/* FIXME: this in not 100% optimal (as we're going through the typedef handling
/* FIXME: this in not 100% optimal (as we're going through the typedef handling
* stuff again
* stuff again
*/
*/
print_basic
(
lvalue
,
1
,
format
);
print_basic
(
lvalue
,
format
);
break
;
break
;
case
SymTagUDT
:
case
SymTagUDT
:
if
(
types_get_info
(
&
type
,
TI_GET_CHILDRENCOUNT
,
&
count
))
if
(
types_get_info
(
&
type
,
TI_GET_CHILDRENCOUNT
,
&
count
))
...
...
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