forked from tTh/FloatImg
minor tweak
This commit is contained in:
parent
62aa91e434
commit
36421bab8f
|
@ -25,7 +25,7 @@ int convert_to_gray; /* WTF ? */
|
||||||
|
|
||||||
/* ----------------------------------------------------------- */
|
/* ----------------------------------------------------------- */
|
||||||
|
|
||||||
int essai_filterstack(void)
|
int essai_filterstack(char *fname)
|
||||||
{
|
{
|
||||||
int foo;
|
int foo;
|
||||||
FloatImg image;
|
FloatImg image;
|
||||||
|
@ -33,7 +33,7 @@ double debut, fin;
|
||||||
|
|
||||||
filterstack_list(__func__);
|
filterstack_list(__func__);
|
||||||
|
|
||||||
foo = fimg_create_from_dump("mire.fimg", &image);
|
foo = fimg_create_from_dump(fname, &image);
|
||||||
if (foo) {
|
if (foo) {
|
||||||
fprintf(stderr, "err %d create image\n", foo);
|
fprintf(stderr, "err %d create image\n", foo);
|
||||||
exit(1);
|
exit(1);
|
||||||
|
@ -98,7 +98,7 @@ if (foo) {
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
foo = essai_filterstack();
|
foo = essai_filterstack("mire.fimg");
|
||||||
if (foo) {
|
if (foo) {
|
||||||
fprintf(stderr, "err %d in essai_filterstack\n", foo);
|
fprintf(stderr, "err %d in essai_filterstack\n", foo);
|
||||||
exit(1);
|
exit(1);
|
||||||
|
|
Loading…
Reference in New Issue