Compare commits

..

No commits in common. "ade40f20299abcebbb0502be09855b11cfd1d27b" and "f6b4a960b24d1a4c472631704e2a7ab9d3ab373f" have entirely different histories.

2 changed files with 8 additions and 2 deletions

View File

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