Description: Fix function signature Author: Mathieu Malaterre Origin: upstream, https://jxrlib.codeplex.com/SourceControl/changeset/04cf339385b8196f98025b43a366a0790deac994 Bug-Debian: http://bugs.debian.org/748590 --- jxrlib-1.1.orig/image/decode/JXRTranscode.c +++ jxrlib-1.1/image/decode/JXRTranscode.c @@ -47,7 +47,7 @@ EXTERN_C Void FreeCodingContextDec(CWMIm EXTERN_C Int StrEncInit(CWMImageStrCodec *); EXTERN_C Void StrIOEncTerm(CWMImageStrCodec *); EXTERN_C Void FreeCodingContextEnc(CWMImageStrCodec *); -EXTERN_C Void encodeMB(CWMImageStrCodec *, Int, Int); +EXTERN_C Int encodeMB(CWMImageStrCodec *, Int, Int); EXTERN_C Int writeIndexTableNull(CWMImageStrCodec *); EXTERN_C Void writePacketHeader(BitIOInfo *, U8, U8); tion> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/guix-time-machine.sh
AgeCommit message (Expand)Author
2023-08-16scripts: time-machine: Error when attempting to visit too old commits....* doc/guix.texi (Invoking guix time-machine): Document limitation. * guix/inferior.scm (cached-channel-instance): New VALIDATE-CHANNELS argument. Use it to validate channels when there are no cache hit. * guix/scripts/time-machine.scm (%options): Tag the given reference with 'tag-or-commit instead of 'commit. (%oldest-possible-commit): New variable. (guix-time-machine) <validate-guix-channel>: New nested procedure. Pass it to the 'cached-channel-instance' call. * tests/guix-time-machine.sh: New test. * Makefile.am (SH_TESTS): Register it. Suggested-by: Simon Tournier <zimon.toutoune@gmail.com> Reviewed-by: Ludovic Courtès <ludo@gnu.org> Reviewed-by: Simon Tournier <zimon.toutoune@gmail.com> Maxim Cournoyer