summaryrefslogtreecommitdiff
path: root/pfinet/sched.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-05-31 22:55:35 +0000
committerRoland McGrath <roland@gnu.org>2002-05-31 22:55:35 +0000
commitdaa33eee65addbc1e62d09c611e1ef12752df872 (patch)
tree1f4bdf77c57cd6d749890eea29cbf334c9d03051 /pfinet/sched.c
parentc396225e6a81dc880e41e1417fd10ca66d6113ee (diff)
2002-05-31 Roland McGrath <roland@frob.com>
* sched.c (net_bh_worker): Add return stmt to quiet gcc warning.
Diffstat (limited to 'pfinet/sched.c')
-rw-r--r--pfinet/sched.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/pfinet/sched.c b/pfinet/sched.c
index 53f0cb09..6c6c8241 100644
--- a/pfinet/sched.c
+++ b/pfinet/sched.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 1995, 1996, 2000 Free Software Foundation, Inc.
+ Copyright (C) 1995,96,2000,02 Free Software Foundation, Inc.
This file is part of the GNU Hurd.
@@ -66,4 +66,6 @@ net_bh_worker (any_t arg)
net_bh ();
__mutex_unlock (&net_bh_lock);
}
+ /*NOTREACHED*/
+ return 0;
}