diff options
author | 2007-11-03 19:52:56 +0000 | |
---|---|---|
committer | 2007-11-03 19:52:56 +0000 | |
commit | 1510135cdf13589917ecedc0af7d9f97b69bedbb (patch) | |
tree | 8ec60580ee98a57138ca1161c59de1bf299e0bce | |
parent | Add missing else so that Concatanation of two buffers work. (diff) | |
download | wireguard-openbsd-1510135cdf13589917ecedc0af7d9f97b69bedbb.tar.xz wireguard-openbsd-1510135cdf13589917ecedc0af7d9f97b69bedbb.zip |
quiet a noisy printf, requested by deraadt
-rw-r--r-- | sys/dev/pci/azalia.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/azalia.c b/sys/dev/pci/azalia.c index 31c093f57b9..f61b66c81ea 100644 --- a/sys/dev/pci/azalia.c +++ b/sys/dev/pci/azalia.c @@ -1,4 +1,4 @@ -/* $OpenBSD: azalia.c,v 1.39 2007/11/02 19:01:26 deanna Exp $ */ +/* $OpenBSD: azalia.c,v 1.40 2007/11/03 19:52:56 deanna Exp $ */ /* $NetBSD: azalia.c,v 1.20 2006/05/07 08:31:44 kent Exp $ */ /*- @@ -1275,7 +1275,7 @@ azalia_codec_delete(codec_t *this) free(this->formats, M_DEVBUF); this->formats = NULL; } - printf("delete_encodings...\n"); + DPRINTF(("delete_encodings...\n")); auconv_delete_encodings(this->encodings); this->encodings = NULL; return 0; |