Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
b0365445
Commit
b0365445
authored
Jul 04, 2001
by
Niels Möller
Browse files
* src/command.c (do_trace_continuation): Use trace(... %t ...).
Rev: src/command.c:1.42
parent
315e0c92
Changes
1
Show whitespace changes
Inline
Side-by-side
src/command.c
View file @
b0365445
...
...
@@ -387,15 +387,9 @@ do_trace_continuation(struct command_continuation *s,
struct
lsh_object
*
x
)
{
CAST
(
trace_continuation
,
self
,
s
);
const
char
*
type
;
if
(
x
)
type
=
(
x
->
isa
)
?
x
->
isa
->
name
:
"<STATIC>"
;
else
type
=
"<NULL>"
;
trace
(
"Leaving %z, value of type %z.
\n
"
,
self
->
name
,
type
);
trace
(
"Leaving %z, value of type %t.
\n
"
,
self
->
name
,
x
);
COMMAND_RETURN
(
self
->
real
,
x
);
}
...
...
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