Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Armillon Damien
xv6-riscv-tp
Commits
ce360293
Commit
ce360293
authored
May 27, 2021
by
Benoît du Garreau
Browse files
Fix error message in usertests/sbrkbasic
parent
165452e4
Changes
1
Hide whitespace changes
Inline
Side-by-side
user/usertests.c
View file @
ce360293
...
...
@@ -1601,7 +1601,7 @@ sbrkbasic(char *s)
for
(
i
=
0
;
i
<
5000
;
i
++
){
b
=
sbrk
(
1
);
if
(
b
!=
a
){
printf
(
"%s: sbrk test failed %d %x %x
\n
"
,
i
,
a
,
b
);
printf
(
"%s: sbrk test failed %d %x %x
\n
"
,
s
,
i
,
a
,
b
);
exit
(
1
);
}
*
b
=
1
;
...
...
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