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
4fd8120f
Commit
4fd8120f
authored
Sep 18, 1998
by
Niels Möller
Browse files
Fix line breaking.
Rev: src/debug.c:1.8
parent
15a5d50f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/debug.c
View file @
4fd8120f
...
...
@@ -39,7 +39,7 @@ static int do_debug(struct abstract_write **w,
for
(
i
=
0
;
i
<
packet
->
length
;
i
++
)
{
if
(
!
i
%
16
)
if
(
!
(
i
%
16
)
)
fprintf
(
closure
->
output
,
"
\n
%08x: "
,
i
);
fprintf
(
closure
->
output
,
"%02x "
,
packet
->
data
[
i
]);
...
...
Write
Preview
Supports
Markdown
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