From dc31dcd99e693e0688bd32d5aacfc8d7c2537d7f Mon Sep 17 00:00:00 2001 From: Alexandre Ratchov Date: Wed, 26 Sep 2018 13:48:54 +0200 Subject: [PATCH] Fix message to reflect "rmidi" is the expected string. From miko@. --- libsndio/mio_rmidi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsndio/mio_rmidi.c b/libsndio/mio_rmidi.c index e0302cc..2f25c64 100644 --- a/libsndio/mio_rmidi.c +++ b/libsndio/mio_rmidi.c @@ -82,7 +82,7 @@ mio_rmidi_getfd(const char *str, unsigned int mode, int nbio) #endif p = _sndio_parsetype(str, "rmidi"); if (p == NULL) { - DPRINTF("mio_rmidi_getfd: %s: \"rsnd\" expected\n", str); + DPRINTF("mio_rmidi_getfd: %s: \"rmidi\" expected\n", str); return -1; } switch (*p) {