提交 3c7db639 authored 作者: Mike Jerris's avatar Mike Jerris

FS-11168: [core] fix compile error on gentoo from typo in assert statement

上级 ed4920e7
......@@ -218,7 +218,7 @@ SWITCH_DECLARE(switch_image_t *)switch_img_alloc(switch_image_t *img,
r = (switch_image_t *)vpx_img_alloc((vpx_image_t *)img, (vpx_img_fmt_t)fmt, d_w, d_h, align);
switch_assert(r);
switch_assert(r->d_w == d_w);
switch_assert(r->d_h = d_h);
switch_assert(r->d_h == d_h);
return r;
#else
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论