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 a trailing semicolon in a macro

definition.
This commit is contained in:
Bruce Evans 1999-01-09 14:07:37 +00:00
parent b2aa114118
commit b9c576c894
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=42432
2 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* from: @(#)cons.h 7.2 (Berkeley) 5/9/91
* $Id: cons.h,v 1.17 1997/07/01 00:54:37 bde Exp $
* $Id: cons.h,v 1.18 1999/01/07 14:14:11 yokota Exp $
*/
#ifndef _MACHINE_CONS_H_
@ -79,7 +79,7 @@ extern int cons_unavail;
static struct consdev name##_consdev = { \
probe, init, getc, checkc, putc \
}; \
DATA_SET(cons_set, name##_consdev);
DATA_SET(cons_set, name##_consdev)
/* Other kernel entry points. */
int cncheckc __P((void));

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* from: @(#)cons.h 7.2 (Berkeley) 5/9/91
* $Id: cons.h,v 1.17 1997/07/01 00:54:37 bde Exp $
* $Id: cons.h,v 1.18 1999/01/07 14:14:11 yokota Exp $
*/
#ifndef _MACHINE_CONS_H_
@ -79,7 +79,7 @@ extern int cons_unavail;
static struct consdev name##_consdev = { \
probe, init, getc, checkc, putc \
}; \
DATA_SET(cons_set, name##_consdev);
DATA_SET(cons_set, name##_consdev)
/* Other kernel entry points. */
int cncheckc __P((void));