mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-22 20:16:54 +03:00
dukky: Fix assignment in assert
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
This commit is contained in:
parent
2b2469df7e
commit
ba4c20a0c7
@ -785,7 +785,7 @@ static void dukky_destroythread(jsthread *thread)
|
|||||||
jsheap *heap = thread->heap;
|
jsheap *heap = thread->heap;
|
||||||
|
|
||||||
assert(thread->in_use == 0);
|
assert(thread->in_use == 0);
|
||||||
assert(thread->pending_destroy = true);
|
assert(thread->pending_destroy == true);
|
||||||
|
|
||||||
/* Closing down the extant thread */
|
/* Closing down the extant thread */
|
||||||
NSLOG(dukky, DEBUG, "Closing down extant thread %p in heap %p", thread, heap);
|
NSLOG(dukky, DEBUG, "Closing down extant thread %p in heap %p", thread, heap);
|
||||||
|
Loading…
Reference in New Issue
Block a user