1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

Fixed pedantic syntax errors caused by the trailing semicolon in the

definition of DOMAIN_SET().
This commit is contained in:
Bruce Evans 1997-11-18 06:48:43 +00:00
parent f40b2bd44f
commit 8f5313948b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=31230

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)domain.h 8.1 (Berkeley) 6/2/93
* $Id$
* $Id: domain.h,v 1.9 1997/02/22 09:45:09 peter Exp $
*/
#ifndef _SYS_DOMAIN_H_
@ -68,7 +68,7 @@ extern struct domain *domains;
extern struct domain localdomain;
#define DOMAIN_SET(name) \
DATA_SET(domain_set, name ## domain);
DATA_SET(domain_set, name ## domain)
#endif