From 4adfa2a937034cbbaa9b6f968dc4a6ff7dad0860 Mon Sep 17 00:00:00 2001 From: Ivica Ico Bukvic <ico@vt.edu> Date: Fri, 1 Mar 2013 00:51:24 -0500 Subject: [PATCH] cosmetic fix --- pd/src/s_midi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pd/src/s_midi.c b/pd/src/s_midi.c index a177a359d..e139e4299 100644 --- a/pd/src/s_midi.c +++ b/pd/src/s_midi.c @@ -509,9 +509,9 @@ void sys_get_midi_apis(char *buf) { int n = 0; strcpy(buf, "{ "); - sprintf(buf + strlen(buf), "{HARDWARE MIDI %d} ", API_DEFAULT); n++; + sprintf(buf + strlen(buf), "{HARDWARE-MIDI %d} ", API_DEFAULT); n++; #ifdef USEAPI_ALSA - sprintf(buf + strlen(buf), "{ALSA MIDI %d} ", API_ALSA); n++; + sprintf(buf + strlen(buf), "{ALSA-MIDI %d} ", API_ALSA); n++; #endif strcat(buf, "}"); /* then again, if only one API (or none) we don't offer any choice. */ -- GitLab