FS-7500: fix compile err

This commit is contained in:
Anthony Minessale
2015-01-27 21:14:51 -06:00
parent 61df2d4c4d
commit 11e9869f73
+2 -1
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;