mirror of
git://git.9front.org/plan9front/plan9front
synced 2025-01-12 11:10:06 +00:00
kernel: fix typo in sema assert= vs == (thanks moody)
This commit is contained in:
parent
e38d42b4a7
commit
381da3192f
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ putseg(Segment *s)
|
|||
return;
|
||||
|
||||
assert(s->sema.prev == &s->sema);
|
||||
assert(s->sema.next = &s->sema);
|
||||
assert(s->sema.next == &s->sema);
|
||||
|
||||
if(s->mapsize > 0){
|
||||
emap = &s->map[s->mapsize];
|
||||
|
|
Loading…
Reference in a new issue