Hello,
On Thu, Jan 03, 2019 at 08:22:52PM +0100, Klemens Nanni wrote:
> In pfctl_optimize.c r1.39 I removed the `af' parameter from `unmask()'
> but accidently zapped the macro's closing paranthese.
>
> Since DEBUG() is needlessly under an OPT_DEBUG guard here, this was not
> effecting normal builds.
>
> Add the missing ')' and remove the ifdef.
>
> Relevant defines includede here for your convenience:
>
> /* #define OPT_DEBUG› 1 */
> #ifdef OPT_DEBUG
> # define DEBUG(str, v...) \
> printf("%s: " str "\n", __FUNCTION__ , ## v)
> #else
> # define DEBUG(str, v...) ((void)0)
> #endif
>
> OK?
OK sashan