Fix another stupid typo

This commit is contained in:
Robin Gareus 2020-06-06 23:03:21 +02:00
parent e0548fa798
commit 27e45c585f
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -255,7 +255,7 @@ static size_t pbd_stack_size ()
#ifndef NDEBUG
printf("TLS of parent thread: %zd Bytes (pthread min-stack: %zu)\n", rv, pt_min_stack);
#endif
assert (rc >= pt_min_stack);
assert (rv >= pt_min_stack);
rv -= pt_min_stack;
pthread_attr_destroy(&attr);
}