diff options
author | arr <arr@FreeBSD.org> | 2002-03-20 14:46:38 +0000 |
---|---|---|
committer | arr <arr@FreeBSD.org> | 2002-03-20 14:46:38 +0000 |
commit | 3780b11057500493287e6e3310a6dad2fac5c50d (patch) | |
tree | 3a816108e690555ba7623a17c259ed0e653700cd /sys/kern/subr_smp.c | |
parent | c802961bf0161ae8a880f619d8b93bc4af4f9ac8 (diff) | |
download | FreeBSD-src-3780b11057500493287e6e3310a6dad2fac5c50d.zip FreeBSD-src-3780b11057500493287e6e3310a6dad2fac5c50d.tar.gz |
- Remove a semi-colon from after SYSINIT that was introduced in rev. 1.163.
Diffstat (limited to 'sys/kern/subr_smp.c')
-rw-r--r-- | sys/kern/subr_smp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_smp.c b/sys/kern/subr_smp.c index 57db54c..34df61d 100644 --- a/sys/kern/subr_smp.c +++ b/sys/kern/subr_smp.c @@ -92,7 +92,7 @@ mp_probe(void *dummy) { mp_probe_status = cpu_mp_probe(); } -SYSINIT(cpu_mp_probe, SI_SUB_TUNABLES, SI_ORDER_FIRST, mp_probe, NULL); +SYSINIT(cpu_mp_probe, SI_SUB_TUNABLES, SI_ORDER_FIRST, mp_probe, NULL) /* * Call the MD SMP initialization code. |