From 1592881663135248b066e6d1134db4aad2cfe813 Mon Sep 17 00:00:00 2001 From: Brenden Matthews Date: Wed, 17 May 2023 19:47:51 -0400 Subject: [PATCH] Fix the words per https://github.com/brndnmtthws/conky/commit/00166b49b5a17cf7e0f947c44ecc18115e917bc8#commitcomment-113653843 --- src/text_object.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/text_object.cc b/src/text_object.cc index c417b329..3d3b7372 100644 --- a/src/text_object.cc +++ b/src/text_object.cc @@ -72,7 +72,7 @@ int append_object(struct text_object *root, struct text_object *obj) { /* update pointers of the list to append to */ if (end != nullptr) { - if (end->next != nullptr) { CRIT_ERR("houston, we have a lift-off"); } + if (end->next != nullptr) { CRIT_ERR("Houston, we have lift-off"); } end->next = obj; } else { root->next = obj;