From: Mike Jerris Date: Wed, 16 May 2018 21:12:08 +0000 (-0400) Subject: FS-11168: [core] fix compile error on gentoo from typo in assert statement X-Git-Tag: v1.8.1~3^2~219 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c7db639fd8def3c735fa9e8a8353b49189d1080;p=thirdparty%2Ffreeswitch.git FS-11168: [core] fix compile error on gentoo from typo in assert statement --- diff --git a/src/switch_core_video.c b/src/switch_core_video.c index 100ed0f4ba..ca9ff3863d 100644 --- a/src/switch_core_video.c +++ b/src/switch_core_video.c @@ -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