Fixed pedantic syntax errors caused by a trailing semicolon in a macro

definition.
This commit is contained in:
Bruce Evans 1998-06-07 11:52:17 +00:00
parent 9399d2c5ad
commit 35b88f573a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=36724

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)netisr.h 8.1 (Berkeley) 6/10/93
* $Id: netisr.h,v 1.12 1997/05/09 12:19:05 kjc Exp $
* $Id: netisr.h,v 1.13 1997/09/16 11:43:44 bde Exp $
*/
#ifndef _NET_NETISR_H_
@ -83,7 +83,7 @@ struct netisrtab {
#define NETISR_SET(num, isr) \
static struct netisrtab mod_nit = { num, isr }; \
DATA_SET(netisr_set, mod_nit);
DATA_SET(netisr_set, mod_nit)
int register_netisr __P((int, netisr_t *));