renaming a function for clarity
This commit is contained in:
@@ -46,13 +46,13 @@ fprintf(stderr, ">>> %s ( %p %p %p %f )\n", __func__,
|
||||
s1, s2, d, coef);
|
||||
#endif
|
||||
|
||||
foo = fimg_images_compatible(s1, s2);
|
||||
foo = fimg_images_not_compatible(s1, s2);
|
||||
if (foo) {
|
||||
fprintf(stderr, "compat s1 s2 -> %d\n", foo);
|
||||
return foo;
|
||||
}
|
||||
|
||||
foo = fimg_images_compatible(s1, d);
|
||||
foo = fimg_images_not_compatible(s1, d);
|
||||
if (foo) {
|
||||
fprintf(stderr, "compat s1 d -> %d\n", foo);
|
||||
return foo;
|
||||
|
||||
Reference in New Issue
Block a user