sws/tests/pixdesc_query: fix use of free() instead of av_free()

Fix CID 1415949
pull/265/head
Clément Bœsch 8 years ago
parent 4158fba3cd
commit 797c232ef8
  1. 2
      libswscale/tests/pixdesc_query.c

@ -83,7 +83,7 @@ int main(void)
printf(" %s\n", pix_fmts[j]);
printf("\n");
free(pix_fmts);
av_free(pix_fmts);
}
}
return 0;

Loading…
Cancel
Save