Skip to content

Commit

Permalink
use '=' instead of ':' to show list of decoders in the same was as th…
Browse files Browse the repository at this point in the history
…e encoders
  • Loading branch information
farindk committed Feb 16, 2023
1 parent 76262bf commit 2d0f843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/heif_convert.cc
Expand Up @@ -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";
}
}

Expand Down

0 comments on commit 2d0f843

Please sign in to comment.