$NetBSD: patch-blitz_convolve.cpp,v 1.3 2024/04/26 15:32:01 wiz Exp $ Fix float* return type. --- blitz/convolve.cpp.orig 2010-07-28 18:06:14.000000000 +0000 +++ blitz/convolve.cpp @@ -940,7 +940,7 @@ float* BlitzPrivate::getBlurKernel(int & long i; if(sigma == 0.0) - return(false); + return(NULL); if(kernel_width == 0) kernel_width = 3;