Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/x86/x86 Fix typo: Parameters are seperated by ', '.



details:   https://anonhg.NetBSD.org/src/rev/2faf0dfae6ae
branches:  trunk
changeset: 448862:2faf0dfae6ae
user:      cherry <cherry%NetBSD.org@localhost>
date:      Tue Feb 12 03:13:50 2019 +0000

description:
Fix typo: Parameters are seperated by ','.

diffstat:

 sys/arch/x86/x86/intr.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 5d3378d4145c -r 2faf0dfae6ae sys/arch/x86/x86/intr.c
--- a/sys/arch/x86/x86/intr.c   Tue Feb 12 02:38:55 2019 +0000
+++ b/sys/arch/x86/x86/intr.c   Tue Feb 12 03:13:50 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: intr.c,v 1.141 2018/12/25 06:50:12 cherry Exp $        */
+/*     $NetBSD: intr.c,v 1.142 2019/02/12 03:13:50 cherry Exp $        */
 
 /*
  * Copyright (c) 2007, 2008, 2009 The NetBSD Foundation, Inc.
@@ -133,7 +133,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.141 2018/12/25 06:50:12 cherry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.142 2019/02/12 03:13:50 cherry Exp $");
 
 #include "opt_intrdebug.h"
 #include "opt_multiprocessor.h"
@@ -1131,7 +1131,7 @@
                snprintf(buf, len, "irq %d", APIC_IRQ_LEGACY_IRQ(ih));
 
 #elif NLAPIC > 0
-       snprintf(buf, len, "irq %d" APIC_IRQ_LEGACY_IRQ(ih));
+       snprintf(buf, len, "irq %d", APIC_IRQ_LEGACY_IRQ(ih));
 #else
        snprintf(buf, len, "irq %d", (int) ih);
 #endif



Home | Main Index | Thread Index | Old Index