From 2d0f84341bfbcd167e1c9d41ca2bdde9d476621e Mon Sep 17 00:00:00 2001 From: Dirk Farin Date: Thu, 16 Feb 2023 16:17:48 +0100 Subject: [PATCH] use '=' instead of ':' to show list of decoders in the same was as the encoders --- examples/heif_convert.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/heif_convert.cc b/examples/heif_convert.cc index 06b6add947..acb96f24ef 100644 --- a/examples/heif_convert.cc +++ b/examples/heif_convert.cc @@ -142,7 +142,7 @@ void list_decoders(heif_compression_format format) id = "---"; } - std::cout << "- " << id << " : " << heif_decoder_descriptor_get_name(decoders[i]) << "\n"; + std::cout << "- " << id << " = " << heif_decoder_descriptor_get_name(decoders[i]) << "\n"; } }