]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-11168: [core] fix compile error on gentoo from typo in assert statement
authorMike Jerris <mike@jerris.com>
Wed, 16 May 2018 21:12:08 +0000 (17:12 -0400)
committerMike Jerris <mike@jerris.com>
Wed, 16 May 2018 21:12:08 +0000 (17:12 -0400)
src/switch_core_video.c

index 100ed0f4ba7e357bd6e09899603de7e3745b43cd..ca9ff3863d70eb44e88b1ba1e4368959fc51fc20 100644 (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