Commit d64d6edf authored by Timothy Gu's avatar Timothy Gu

Correct two build/built typos

Found-by: Leo Izen <leo.izen@gmail.com> as thebombzen on IRC
Signed-off-by: 's avatarTimothy Gu <timothygu99@gmail.com>
parent 7c97946d
...@@ -126,7 +126,7 @@ static int device_open(AVFormatContext *ctx) ...@@ -126,7 +126,7 @@ static int device_open(AVFormatContext *ctx)
#if CONFIG_LIBV4L2 #if CONFIG_LIBV4L2
SET_WRAPPERS(v4l2_); SET_WRAPPERS(v4l2_);
#else #else
av_log(ctx, AV_LOG_ERROR, "libavdevice is not build with libv4l2 support.\n"); av_log(ctx, AV_LOG_ERROR, "libavdevice is not built with libv4l2 support.\n");
return AVERROR(EINVAL); return AVERROR(EINVAL);
#endif #endif
} else { } else {
......
...@@ -53,7 +53,7 @@ unsigned avutil_version(void) ...@@ -53,7 +53,7 @@ unsigned avutil_version(void)
av_assert0(((size_t)-1) > 0); // C guarantees this but if false on a platform we care about revert at least b284e1ffe343d6697fb950d1ee517bafda8a9844 av_assert0(((size_t)-1) > 0); // C guarantees this but if false on a platform we care about revert at least b284e1ffe343d6697fb950d1ee517bafda8a9844
if (av_sat_dadd32(1, 2) != 5) { if (av_sat_dadd32(1, 2) != 5) {
av_log(NULL, AV_LOG_FATAL, "Libavutil has been build with a broken binutils, please upgrade binutils and rebuild\n"); av_log(NULL, AV_LOG_FATAL, "Libavutil has been built with a broken binutils, please upgrade binutils and rebuild\n");
abort(); abort();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment