From eee6a97114e746e49cfffda0b6c58cf54d5dc157 Mon Sep 17 00:00:00 2001 From: Alexandre Ratchov Date: Thu, 29 Aug 2019 09:14:27 +0200 Subject: [PATCH] Tweak debug printf in port_open() --- sndiod/midi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sndiod/midi.c b/sndiod/midi.c index fade7d3..d685b29 100644 --- a/sndiod/midi.c +++ b/sndiod/midi.c @@ -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;