diff options
author | bde <bde@FreeBSD.org> | 2001-10-04 07:51:42 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2001-10-04 07:51:42 +0000 |
commit | c5bb23781e60dfdc865fe2a8cc602803f70521a4 (patch) | |
tree | c4092be2f22a1a405ad0c6b592d12cb91cbe3fd8 /sys/netgraph | |
parent | 7e164026466705760096939edb25f50ab6c86273 (diff) | |
download | FreeBSD-src-c5bb23781e60dfdc865fe2a8cc602803f70521a4.zip FreeBSD-src-c5bb23781e60dfdc865fe2a8cc602803f70521a4.tar.gz |
Fixed pedantic syntax error (trailing semicolon in enum).
Diffstat (limited to 'sys/netgraph')
-rw-r--r-- | sys/netgraph/ng_gif.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netgraph/ng_gif.h b/sys/netgraph/ng_gif.h index 88652e1..03dc523 100644 --- a/sys/netgraph/ng_gif.h +++ b/sys/netgraph/ng_gif.h @@ -78,7 +78,7 @@ /* Netgraph control messages */ enum { NGM_GIF_GET_IFNAME = 1, /* get the interface name */ - NGM_GIF_GET_IFINDEX, /* get the interface global index # */ + NGM_GIF_GET_IFINDEX /* get the interface global index # */ }; #endif /* _NETGRAPH_NG_GIF_H_ */ |