Fix typo, goto before ret assignment

This commit is contained in:
Julien BLACHE 2011-04-24 18:40:32 +02:00
parent 88280217a4
commit f86915f15e

View File

@ -238,8 +238,8 @@ artwork_rescale(AVFormatContext *src_ctx, int s, int out_w, int out_h, int forma
{
DPRINTF(E_LOG, L_ART, "Could not determine best pixel format\n");
goto out_free_dst;
ret = -1;
goto out_free_dst;
}
DPRINTF(E_DBG, L_ART, "Selected pixel format: %d\n", dst->pix_fmt);