Skip to content

Commit

Permalink
fix compile warning pointer-to-int-cast
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed May 24, 2024

Verified

This commit was signed with the committer’s verified signature.
ararslan Alex Arslan
1 parent 857e358 commit 5426d3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/avformat/common.c
Original file line number Diff line number Diff line change
@@ -223,7 +223,7 @@ mlt_channel_layout av_channel_layout_to_mlt(int64_t layout)
case AV_CH_LAYOUT_7POINT1_WIDE_BACK:
return mlt_channel_7p1_wide_back;
}
mlt_log_error(NULL, "[avformat] Unknown channel layout: %lu\n", (unsigned long) layout);
mlt_log_error(NULL, "[avformat] Unknown channel layout: %lu\n", (unsigned long) layout->u.mask);
return mlt_channel_independent;
}

0 comments on commit 5426d3b

Please sign in to comment.