1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-03-04 01:37:14 +00:00

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

This commit is contained in:
Mike Jerris 2018-05-16 17:12:08 -04:00
parent ed4920e792
commit 3c7db639fd

@ -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); 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);
switch_assert(r->d_w == d_w); switch_assert(r->d_w == d_w);
switch_assert(r->d_h = d_h); switch_assert(r->d_h == d_h);
return r; return r;
#else #else