Skip to content
This repository was archived by the owner on Dec 7, 2017. It is now read-only.

Commit 024f0e4

Browse files
committed
fix monotonic?
the sense had been swapped for some reason
1 parent a5fb872 commit 024f0e4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* revised spec tests [John Cupitt]
88
* fix a segv in im.label_regions [John Cupitt]
99
* add a Valgrind suppressions file [John Cupitt]
10+
* fix monotonic? [John Cupitt]
1011

1112
# Version 0.3.8
1213

ext/image_histograms_lut.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ img_monotonic_p(VALUE obj)
351351
if( im_ismonotonic(im, &ret) )
352352
vips_lib_error();
353353

354-
return( ret == 0 ? Qtrue : Qfalse );
354+
return( ret == 0 ? Qfalse : Qtrue );
355355
}
356356

357357
/*

0 commit comments

Comments
 (0)