Source-Changes-HG archive

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

[src/trunk]: src/sys/dev fix a trivial lint warning



details:   https://anonhg.NetBSD.org/src/rev/33e62ac0eaaa
branches:  trunk
changeset: 517692:33e62ac0eaaa
user:      perry <perry%NetBSD.org@localhost>
date:      Sat Nov 17 05:31:27 2001 +0000

description:
fix a trivial lint warning

diffstat:

 sys/dev/audio.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 46ae248200ad -r 33e62ac0eaaa sys/dev/audio.c
--- a/sys/dev/audio.c   Sat Nov 17 04:41:44 2001 +0000
+++ b/sys/dev/audio.c   Sat Nov 17 05:31:27 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: audio.c,v 1.143 2001/11/13 05:32:49 lukem Exp $        */
+/*     $NetBSD: audio.c,v 1.144 2001/11/17 05:31:27 perry Exp $        */
 
 /*
  * Copyright (c) 1991-1993 Regents of the University of California.
@@ -61,7 +61,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.143 2001/11/13 05:32:49 lukem Exp $");
+__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.144 2001/11/17 05:31:27 perry Exp $");
 
 #include "audio.h"
 #if NAUDIO > 0
@@ -236,7 +236,7 @@
         }
 #endif
 
-#define        PRINT(s)        do { printf("%s%s", sep, s); sep = ", "; } while (0)
+#define        PRINT(str)      do { printf("%s%s", sep, str); sep = ", "; } while (0)
 
        props = hwp->get_props(hdlp);
 



Home | Main Index | Thread Index | Old Index