FS-7500: fix compile err

This commit is contained in:
Anthony Minessale 2015-01-27 21:14:51 -06:00 committed by Michael Jerris
parent 89c02eada9
commit 2f5989c453
1 changed files with 2 additions and 1 deletions

View File

@ -75,9 +75,10 @@ SWITCH_DECLARE(void) switch_img_free(switch_image_t **img)
SWITCH_DECLARE(void) switch_img_copy(switch_image_t *img, switch_image_t **new_img)
{
int i, j, k = 1;
switch_assert(img);
switch_assert(new_img);
int i, j, k = 1;
if (!img->fmt == SWITCH_IMG_FMT_I420) return;