Compare commits
No commits in common. "ade40f20299abcebbb0502be09855b11cfd1d27b" and "f6b4a960b24d1a4c472631704e2a7ab9d3ab373f" have entirely different histories.
ade40f2029
...
f6b4a960b2
@ -87,6 +87,13 @@ int foo;
|
||||
fprintf(stderr, ">>> %s ( %p %p %f )\n", __func__, S, D, kf);
|
||||
#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);
|
||||
if (foo) {
|
||||
fprintf(stderr, "%s err %d classif_trial %p\n", __func__,
|
||||
|
@ -1,5 +1,4 @@
|
||||
/*
|
||||
* halfsizing an fimg picture.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
@ -42,7 +41,7 @@ if (foo) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------- */
|
||||
|
Loading…
Reference in New Issue
Block a user