diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-31 22:55:35 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-31 22:55:35 +0000 |
commit | daa33eee65addbc1e62d09c611e1ef12752df872 (patch) | |
tree | 1f4bdf77c57cd6d749890eea29cbf334c9d03051 | |
parent | c396225e6a81dc880e41e1417fd10ca66d6113ee (diff) |
2002-05-31 Roland McGrath <roland@frob.com>
* sched.c (net_bh_worker): Add return stmt to quiet gcc warning.
-rw-r--r-- | pfinet/sched.c | 4 |
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; } |