Source-Changes-HG archive

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

[src/trunk]: src/sys/dev '<Device>' usually means the string comes from outsi...



details:   https://anonhg.NetBSD.org/src/rev/78fae923dae7
branches:  trunk
changeset: 477525:78fae923dae7
user:      soren <soren%NetBSD.org@localhost>
date:      Tue Oct 19 16:04:52 1999 +0000

description:
'<Device>' usually means the string comes from outside the kernel.

diffstat:

 sys/dev/midi.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 74139f20d11a -r 78fae923dae7 sys/dev/midi.c
--- a/sys/dev/midi.c    Tue Oct 19 16:04:45 1999 +0000
+++ b/sys/dev/midi.c    Tue Oct 19 16:04:52 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: midi.c,v 1.12 1999/09/09 10:24:45 augustss Exp $       */
+/*     $NetBSD: midi.c,v 1.13 1999/10/19 16:04:52 soren Exp $  */
 
 /*
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -158,7 +158,7 @@
        sc->sc_dev = parent;
        sc->hw_if->getinfo(sc->hw_hdl, &mi);
        sc->props = mi.props;
-       printf(": <%s>\n", mi.name);
+       printf(": %s\n", mi.name);
 }
 
 int



Home | Main Index | Thread Index | Old Index