Skip to content

Commit

Permalink
avoid duplicate symbol (#1365)
Browse files Browse the repository at this point in the history
  • Loading branch information
farindk committed Nov 3, 2024
1 parent 74a4393 commit c99ed16
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/heif_info.cc
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ static struct option long_options[] = {
{0, 0, 0, 0}
};

const char* fourcc_to_string(uint32_t fourcc)
// Note: the same function is also exists in common_utils.h, but is not in the public API.
static const char* fourcc_to_string(uint32_t fourcc)
{
static char fcc[5];
fcc[0] = (char) ((fourcc >> 24) & 0xFF);
Expand Down

0 comments on commit c99ed16

Please sign in to comment.