Add return 0 after errx in to quiet the compiler
This commit is contained in:
parent
9e44eb8cc1
commit
1a8d48f462
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: rpc_hout.c,v 1.9 1998/02/11 23:11:17 lukem Exp $ */
|
/* $NetBSD: rpc_hout.c,v 1.10 1998/10/08 01:31:34 wsanchez Exp $ */
|
||||||
/*
|
/*
|
||||||
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for
|
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for
|
||||||
* unrestricted use provided that this legend is included on all tape
|
* unrestricted use provided that this legend is included on all tape
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
#if 0
|
#if 0
|
||||||
static char sccsid[] = "@(#)rpc_hout.c 1.12 89/02/22 (C) 1987 SMI";
|
static char sccsid[] = "@(#)rpc_hout.c 1.12 89/02/22 (C) 1987 SMI";
|
||||||
#else
|
#else
|
||||||
__RCSID("$NetBSD: rpc_hout.c,v 1.9 1998/02/11 23:11:17 lukem Exp $");
|
__RCSID("$NetBSD: rpc_hout.c,v 1.10 1998/10/08 01:31:34 wsanchez Exp $");
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -265,6 +265,7 @@ define_printed(stop, start)
|
||||||
errx(1, "Internal error %s, %d: procedure not found\n",
|
errx(1, "Internal error %s, %d: procedure not found\n",
|
||||||
__FILE__, __LINE__);
|
__FILE__, __LINE__);
|
||||||
/* NOTREACHED */
|
/* NOTREACHED */
|
||||||
|
return (0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in New Issue