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
1 changed files with 1 additions and 1 deletions

View File

@ -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