From 6968a8a4532b5a187a02bdf8e5b3719fb47749b6 Mon Sep 17 00:00:00 2001 From: Thomas Meson Date: Mon, 14 Sep 2015 18:16:03 +0200 Subject: [PATCH] vips__gaussblur: add the missing sentinel --- vips.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vips.h b/vips.h index ee0be0f..e27066c 100644 --- a/vips.h +++ b/vips.h @@ -330,6 +330,6 @@ vips__gaussblur(VipsImage *in, VipsImage **out, double sigma, double min_ampl) { #if (VIPS_MAJOR_VERSION == 7 && VIPS_MINOR_VERSION < 41) return vips_gaussblur(in, out, ceil(sigma), NULL); #else - return vips_gaussblur(in, out, sigma, NULL, "min_ampl", min_ampl); + return vips_gaussblur(in, out, sigma, NULL, "min_ampl", min_ampl, NULL); #endif }