Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jason Beetham
wine
Commits
3b50d211
Commit
3b50d211
authored
25 years ago
by
Eric Pouech
Committed by
Alexandre Julliard
25 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fixed a few typos.
parent
cb0f1a9c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
debugger/expr.c
+6
-9
6 additions, 9 deletions
debugger/expr.c
with
6 additions
and
9 deletions
debugger/expr.c
+
6
−
9
View file @
3b50d211
...
...
@@ -9,15 +9,10 @@
#include
<stdlib.h>
#include
<stdio.h>
#include
<string.h>
#include
<limits.h>
#include
<sys/types.h>
#include
<neexe.h>
#include
<assert.h>
#include
"wine/winbase16.h"
#include
"module.h"
#include
"task.h"
#include
"selectors.h"
#include
"debugger.h"
#include
"expr.h"
#include
<stdarg.h>
...
...
@@ -131,6 +126,8 @@ DEBUG_GetFreeExpr()
rtn
=
(
struct
expr
*
)
&
expr_list
[
next_expr_free
];
next_expr_free
+=
sizeof
(
struct
expr
);
assert
(
next_expr_free
<
sizeof
(
expr_list
));
return
rtn
;
}
...
...
@@ -388,7 +385,7 @@ DEBUG_EvalExpr(struct expr * exp)
{
fprintf
(
stderr
,
"Failed to find symbol
\n
"
);
break
;
}
;
}
fptr
=
(
int
(
*
)())
rtn
.
off
;
switch
(
exp
->
un
.
call
.
nargs
)
...
...
@@ -606,7 +603,7 @@ DEBUG_EvalExpr(struct expr * exp)
{
rtn
.
type
=
DEBUG_TypeInt
;
}
switch
(
exp
->
un
.
bi
nop
.
bi
nop_type
)
switch
(
exp
->
un
.
u
nop
.
u
nop_type
)
{
case
EXP_OP_NEG
:
rtn
.
seg
=
0
;
...
...
@@ -775,7 +772,7 @@ DEBUG_DisplayExpr(struct expr * exp)
fprintf
(
stderr
,
" )"
);
break
;
case
EXPR_TYPE_UNOP
:
switch
(
exp
->
un
.
bi
nop
.
bi
nop_type
)
switch
(
exp
->
un
.
u
nop
.
u
nop_type
)
{
case
EXP_OP_NEG
:
fprintf
(
stderr
,
"-"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment