From 69c07afcddd151c04a9175f611b04eb23223310d Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 6 Aug 2023 13:28:43 -0400 Subject: [PATCH] io-svg.c: make two comments more informative --- io-svg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/io-svg.c b/io-svg.c index 09b70af..e44af1a 100644 --- a/io-svg.c +++ b/io-svg.c @@ -469,14 +469,14 @@ static gchar* process_gtk_symbolic_svg_xinclude(const gchar* buffer, * leading tag. */ gchar* svg_open_start = g_strstr_len(decoded, decoded_size, ""); if (svg_open_end == NULL) { - /* Uhhhhh */ + /* The decoded data is not what we were expecting. Give up. */ g_free(decoded); return NULL; } -- 2.43.2