From c557a6211f5a29d89fc2ab561e0fb3d8878fb6ad Mon Sep 17 00:00:00 2001 From: philippegorley Date: Mon, 17 Dec 2018 15:27:57 -0500 Subject: [PATCH] remove mjpeg log --- libavcodec/mjpegdec.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libavcodec/mjpegdec.c b/libavcodec/mjpegdec.c index d1dca84d36..4a26c23cd4 100644 --- a/libavcodec/mjpegdec.c +++ b/libavcodec/mjpegdec.c @@ -2294,9 +2294,7 @@ int ff_mjpeg_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, "restart marker: %d\n", start_code & 0x0f); /* APP fields */ } else if (start_code >= APP0 && start_code <= APP15) { - if ((ret = mjpeg_decode_app(s)) < 0) - av_log(avctx, AV_LOG_ERROR, "unable to decode APP fields: %s\n", - av_err2str(ret)); + ret = mjpeg_decode_app(s); /* Comment */ } else if (start_code == COM) { ret = mjpeg_decode_com(s); -- 2.17.1 guix/about/'>aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/nim.scm
AgeCommit message (Expand)Author
2023-06-06gnu: nim: Update to 1.6.12....Without the attached patch, Nim is broken on Guix as it searches for its stdlib in /lib while it was placed in /lib/nim. * gnu/packages/nim.scm (nim): Update to 1.6.12. [arguments]: In 'patch-installer phase install stdlib source to the right directory. In 'patch-more-shebangs phase edit substitute* to point to the new osproc source. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Gruruya