diff options
author | 2019-08-29 07:19:15 +0000 | |
---|---|---|
committer | 2019-08-29 07:19:15 +0000 | |
commit | 0c998ac15b29d19f1a72e2c81fa32513639f4afa (patch) | |
tree | 98ab79f7c6ce53ce2450cb36c324b4d6487dd856 | |
parent | It is not longer necessary to double-escape ; in %%%, problem reported (diff) | |
download | wireguard-openbsd-0c998ac15b29d19f1a72e2c81fa32513639f4afa.tar.xz wireguard-openbsd-0c998ac15b29d19f1a72e2c81fa32513639f4afa.zip |
Make debug printf in port_open() look as others
-rw-r--r-- | usr.bin/sndiod/midi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/sndiod/midi.c b/usr.bin/sndiod/midi.c index c42c0da4a92..c2287f826f3 100644 --- a/usr.bin/sndiod/midi.c +++ b/usr.bin/sndiod/midi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: midi.c,v 1.20 2019/08/29 07:10:27 ratchov Exp $ */ +/* $OpenBSD: midi.c,v 1.21 2019/08/29 07:19:15 ratchov Exp $ */ /* * Copyright (c) 2008-2012 Alexandre Ratchov <alex@caoua.org> * @@ -521,7 +521,7 @@ port_open(struct port *c) { if (!port_mio_open(c)) { if (log_level >= 1) { - log_puts(c->path); + port_log(c); log_puts(": failed to open midi port\n"); } return 0; |