From 6cf69fee189857ae6f85cd3f81a6a58364839942 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 7 Sep 2007 13:31:15 +0000 Subject: r24994: Fix some C++ warnings. (This used to be commit 925abf74fa1ed5ae726bae8781ec549302786b39) --- source4/smbd/process_standard.c | 2 +- source4/smbd/server.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/smbd') diff --git a/source4/smbd/process_standard.c b/source4/smbd/process_standard.c index b9a245d140..07fdccdb36 100644 --- a/source4/smbd/process_standard.c +++ b/source4/smbd/process_standard.c @@ -191,7 +191,7 @@ static void standard_new_task(struct event_context *ev, /* called when a task goes down */ -static void standard_terminate(struct event_context *ev, const char *reason) +_NORETURN_ static void standard_terminate(struct event_context *ev, const char *reason) { DEBUG(2,("standard_terminate: reason[%s]\n",reason)); diff --git a/source4/smbd/server.c b/source4/smbd/server.c index 1a90592fcd..78f39f7fa7 100644 --- a/source4/smbd/server.c +++ b/source4/smbd/server.c @@ -168,7 +168,7 @@ static void server_stdin_handler(struct event_context *event_ctx, struct fd_even /* die if the user selected maximum runtime is exceeded */ -static void max_runtime_handler(struct event_context *ev, struct timed_event *te, +_NORETURN_ static void max_runtime_handler(struct event_context *ev, struct timed_event *te, struct timeval t, void *private) { const char *binary_name = private; -- cgit