summaryrefslogtreecommitdiff
path: root/source4/lib/appweb/mpr/miniMpr.h
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2006-04-08 03:04:00 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:00:51 -0500
commitb4aa2ec6bad3a6eb106b94a3c62601cd8a072b88 (patch)
tree562cf01bb9f3835eb6b267b1a1f8b2465bc12507 /source4/lib/appweb/mpr/miniMpr.h
parent48bf8e2b6d5498db4c5a7ba6881c2e1dc957e49b (diff)
downloadsamba-b4aa2ec6bad3a6eb106b94a3c62601cd8a072b88.tar.gz
samba-b4aa2ec6bad3a6eb106b94a3c62601cd8a072b88.tar.bz2
samba-b4aa2ec6bad3a6eb106b94a3c62601cd8a072b88.zip
r14984: marking mprBreakpoint() as a __noreturn__ function should reduce the
number of ejs errors from the IBM checker (This used to be commit 68038ef5660b4b51c8c3897e8c384ba7bf3bbd8b)
Diffstat (limited to 'source4/lib/appweb/mpr/miniMpr.h')
-rw-r--r--source4/lib/appweb/mpr/miniMpr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/appweb/mpr/miniMpr.h b/source4/lib/appweb/mpr/miniMpr.h
index 30d2103ba8..0b2dc3490d 100644
--- a/source4/lib/appweb/mpr/miniMpr.h
+++ b/source4/lib/appweb/mpr/miniMpr.h
@@ -258,7 +258,7 @@ extern int mprAllocVsprintf(char **msgbuf, int maxSize, const char *fmt,
extern int mprAllocSprintf(char **msgbuf, int maxSize, const char *fmt, ...) PRINTF_ATTRIBUTE(3,4);
extern char *mprItoa(int num, char *buf, int width);
extern void mprLog(int level, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
-extern void mprBreakpoint(const char *file, int line, const char *msg);
+extern void mprBreakpoint(const char *file, int line, const char *msg) NORETURN_ATTRIBUTE;
#endif /* BLD_GOAHEAD_WEBSERVER */
extern MprArray *mprCreateArray(void);