From: Sandro Santilli Date: Thu, 16 Jun 2016 13:04:05 +0000 (+0000) Subject: Fix LWDEBUGGF definition for non-debug builds X-Git-Tag: 2.3.0beta1~66 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9adb8b95ea52dc7802807612a92eba19c9a0c734;p=postgis Fix LWDEBUGGF definition for non-debug builds git-svn-id: http://svn.osgeo.org/postgis/trunk@14967 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/liblwgeom/lwgeom_log.h b/liblwgeom/lwgeom_log.h index e4db0646e..daa313f9a 100644 --- a/liblwgeom/lwgeom_log.h +++ b/liblwgeom/lwgeom_log.h @@ -95,7 +95,7 @@ /* Empty prototype that can be optimised away by the compiler * for non-debug builds */ -#define LWDEBUGGF(level, geom, msg) \ +#define LWDEBUGGF(level, geom, fmt, ...) \ ((void) 0) #endif /* POSTGIS_DEBUG_LEVEL <= 0 */