From 27e45c585f135c22879052047ced5d5a9b9fbba9 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 6 Jun 2020 23:03:21 +0200 Subject: [PATCH] Fix another stupid typo --- libs/pbd/pthread_utils.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/pbd/pthread_utils.cc b/libs/pbd/pthread_utils.cc index 534b2bfc99..918176ed8e 100644 --- a/libs/pbd/pthread_utils.cc +++ b/libs/pbd/pthread_utils.cc @@ -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); }