From 36421bab8f08e2ed46a6c5058833126d65c2dd56 Mon Sep 17 00:00:00 2001 From: tonton th Date: Mon, 7 Dec 2020 09:39:42 +0100 Subject: [PATCH] minor tweak --- Fonderie/t.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Fonderie/t.c b/Fonderie/t.c index 91e051e..f44824c 100644 --- a/Fonderie/t.c +++ b/Fonderie/t.c @@ -25,7 +25,7 @@ int convert_to_gray; /* WTF ? */ /* ----------------------------------------------------------- */ -int essai_filterstack(void) +int essai_filterstack(char *fname) { int foo; FloatImg image; @@ -33,7 +33,7 @@ double debut, fin; filterstack_list(__func__); -foo = fimg_create_from_dump("mire.fimg", &image); +foo = fimg_create_from_dump(fname, &image); if (foo) { fprintf(stderr, "err %d create image\n", foo); exit(1); @@ -98,7 +98,7 @@ if (foo) { exit(1); } -foo = essai_filterstack(); +foo = essai_filterstack("mire.fimg"); if (foo) { fprintf(stderr, "err %d in essai_filterstack\n", foo); exit(1);