From 1551c9a8b794249094bea4284a70f4d0046a67b4 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Wed, 9 Oct 2019 17:47:55 -0400 Subject: [PATCH] Fix spelling --- gc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gc.c b/gc.c index 93401c33..4b8f717f 100644 --- a/gc.c +++ b/gc.c @@ -297,7 +297,7 @@ void gc_remove_mutator(gc_thread_data * thd) ck_array_commit(&Cyc_mutators); // Place on list of old mutators to cleanup if (ck_array_put_unique(&old_mutators, (void *)thd) < 0) { - fprintf(stderr, "Unable to add thread data to GC list, existing\n"); + fprintf(stderr, "Unable to add thread data to GC list, exiting\n"); exit(1); } ck_array_commit(&old_mutators);