Compare commits

..

2 Commits

Author SHA1 Message Date
phyto
ade40f2029 cleanup 2021-05-05 20:34:08 +02:00
phyto
447d4dab7d oups... 2021-05-05 19:29:15 +02:00
2 changed files with 2 additions and 8 deletions

View File

@ -87,13 +87,6 @@ int foo;
fprintf(stderr, ">>> %s ( %p %p %f )\n", __func__, S, D, kf); fprintf(stderr, ">>> %s ( %p %p %f )\n", __func__, S, D, kf);
#endif #endif
foo = fimg_copy_data(S, D);
if (foo) {
fprintf(stderr, "%s err %d copy data %p -> %p\n", __func__,
foo, S, D);
return -98;
}
foo = fimg_classif_trial(S, D, kf, 0); foo = fimg_classif_trial(S, D, kf, 0);
if (foo) { if (foo) {
fprintf(stderr, "%s err %d classif_trial %p\n", __func__, fprintf(stderr, "%s err %d classif_trial %p\n", __func__,

View File

@ -1,4 +1,5 @@
/* /*
* halfsizing an fimg picture.
*/ */
#include <stdio.h> #include <stdio.h>
@ -41,7 +42,7 @@ if (foo) {
return -1; return -1;
} }
return -1; return 0;
} }
/* ------------------------------------------------------------- */ /* ------------------------------------------------------------- */