From: phk Date: Sun, 21 Dec 2008 10:45:33 +0000 (+0000) Subject: Make it entirely clear to the compiler that the WRONG() macro stops X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=421ba3652d735de83804cc7bb164e85febcda189;p=varnish Make it entirely clear to the compiler that the WRONG() macro stops git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@3477 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/include/libvarnish.h b/varnish-cache/include/libvarnish.h index 04dac6b8..7412e2f1 100644 --- a/varnish-cache/include/libvarnish.h +++ b/varnish-cache/include/libvarnish.h @@ -128,4 +128,5 @@ do { \ #define WRONG(expl) \ do { \ lbv_assert(__func__, __FILE__, __LINE__, expl, errno, 3); \ + abort(); \ } while (0)