mirror of
https://github.com/opnsense/src.git
synced 2026-04-29 18:32:49 -04:00
Fixed pedantic syntax errors caused by a trailing semicolon in a macro
definition.
This commit is contained in:
parent
9399d2c5ad
commit
35b88f573a
1 changed files with 2 additions and 2 deletions
|
|
@ -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 *));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue