[xcode] Fix missing "&"

This commit is contained in:
ejurgensen 2019-03-13 21:44:16 +01:00
parent b8e0280567
commit 992ab90876

View File

@ -937,7 +937,7 @@ open_output(struct encode_ctx *ctx, struct decode_ctx *src_ctx)
} }
// Clear AVFMT_NOFILE bit, it is not allowed as we will set our own AVIOContext // Clear AVFMT_NOFILE bit, it is not allowed as we will set our own AVIOContext
oformat->flags = ~AVFMT_NOFILE; oformat->flags &= ~AVFMT_NOFILE;
CHECK_NULL(L_XCODE, ctx->ofmt_ctx = avformat_alloc_context()); CHECK_NULL(L_XCODE, ctx->ofmt_ctx = avformat_alloc_context());