From baadc350b50d030ab72f5d71d15fe0722811d485 Mon Sep 17 00:00:00 2001 From: Urias McCullough Date: Sun, 25 Dec 2011 19:01:53 -0800 Subject: [PATCH] Fix ASSERT that wasn't altered back in hrev39770, allows debug build to succeed Signed-off-by: Matt Madia --- src/libs/print/libprint/Halftone.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/print/libprint/Halftone.cpp b/src/libs/print/libprint/Halftone.cpp index 534e5530f4..82b5e6e0bd 100644 --- a/src/libs/print/libprint/Halftone.cpp +++ b/src/libs/print/libprint/Halftone.cpp @@ -167,7 +167,7 @@ Halftone::Dither(uchar* destination, const uchar* source, int x, int y, break; } } else { - ASSERT(fGray == &gray); + ASSERT(fGray == &ToGray); } (this->*fDither)(destination, source, x, y, width);