Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Jan 2011 19:10:24 +0000 (UTC)
From:      Pawel Jakub Dawidek <pjd@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r217958 - head/sbin/hastd
Message-ID:  <201101271910.p0RJAOVi030553@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pjd
Date: Thu Jan 27 19:10:24 2011
New Revision: 217958
URL: http://svn.freebsd.org/changeset/base/217958

Log:
  Remove __dead2 from pjdlog_verify() prototype, it does return sometimes.
  
  MFC after:	1 week

Modified:
  head/sbin/hastd/pjdlog.h

Modified: head/sbin/hastd/pjdlog.h
==============================================================================
--- head/sbin/hastd/pjdlog.h	Thu Jan 27 19:08:01 2011	(r217957)
+++ head/sbin/hastd/pjdlog.h	Thu Jan 27 19:10:24 2011	(r217958)
@@ -86,7 +86,7 @@ void pjdlog_exitx(int exitcode, const ch
 void pjdlogv_exitx(int exitcode, const char *fmt, va_list ap) __printflike(2, 0) __dead2;
 
 void pjdlog_verify(const char *func, const char *file, int line,
-    const char *failedexpr) __dead2;
+    const char *failedexpr);
 
 #define	PJDLOG_VERIFY(expr)	do {					\
 	if (!(expr))							\



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201101271910.p0RJAOVi030553>