Description: Fix typos and remove some warnings Author: Mathieu Malaterre Index: jxrlib-1.1/jxrencoderdecoder/JxrEncApp.c =================================================================== --- jxrlib-1.1.orig/jxrencoderdecoder/JxrEncApp.c +++ jxrlib-1.1/jxrencoderdecoder/JxrEncApp.c @@ -578,7 +578,7 @@ main(int argc, char* argv[]) //================================ Call(PKCreateCodecFactory(&pCodecFactory, WMP_SDK_VERSION)); - Call(pCodecFactory->CreateCodec(&IID_PKImageWmpEncode, &pEncoder)); + Call(pCodecFactory->CreateCodec(&IID_PKImageWmpEncode, (void**)&pEncoder)); //---------------------------------------------------------------- Call(PKCreateTestFactory(&pTestFactory, WMP_SDK_VERSION)); Index: jxrlib-1.1/jxrgluelib/JXRMeta.h =================================================================== --- jxrlib-1.1.orig/jxrgluelib/JXRMeta.h +++ jxrlib-1.1/jxrgluelib/JXRMeta.h @@ -34,7 +34,7 @@ #ifndef UNREFERENCED_PARAMETER #define UNREFERENCED_PARAMETER(P) { (P) = (P); } -#endif UNREFERENCED_PARAMETER +#endif /*UNREFERENCED_PARAMETER*/ //================================================================ // Container ref='/guix/tree/tests/graph.scm?id=c9a37f57cbb18be01436a709cbdd96ffea41caf5'>treecommitdiff
path: root/tests/graph.scm
AgeCommit message (Expand)Author
2022-07-01tests: Adjust 'guix graph' test to latest OCaml changes....* tests/graph.scm ("reverse bag DAG"): Adjust to latest OCaml changes by looking at dune/ocaml-camomile/ocaml-utop. Ludovic Courtès
2022-02-05tests: Assert that cyclic graphs can be produced....* tests/graph.scm ("package DAG, oops it was a cycle"): New test. Liliana Marie Prikler
2021-09-21graph: Add '--max-depth'....* guix/graph.scm (export-graph): Add #:max-depth and honor it, adding 'depths' argument to 'loop'. * guix/scripts/graph.scm (%options, show-help): Add '--max-depth'. (%default-options): Add 'max-depth'. (guix-graph): Pass #:max-depth to 'export-graph'. * tests/graph.scm ("package DAG, limited depth"): New test. * doc/guix.texi (Invoking guix graph): Document it. Ludovic Courtès
2020-10-20graph: Adjust test for recent OCaml changes....This is a followup to 339177956affdc471832750a3805b74356487e93. * tests/graph.scm ("reverse bag DAG"): Look for "ocaml4.07-dune" rather than "dune". Ludovic Courtès