aboutsummaryrefslogtreecommitdiff
path: root/backends/midi/timidity.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/midi/timidity.cpp')
-rw-r--r--backends/midi/timidity.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/midi/timidity.cpp b/backends/midi/timidity.cpp
index 963af86a6e..8b10cf07a4 100644
--- a/backends/midi/timidity.cpp
+++ b/backends/midi/timidity.cpp
@@ -168,7 +168,7 @@ int MidiDriver_TIMIDITY::open() {
return -1;
}
- /* should read greeting issued by server upon connect:
+ /* should read greeting issued by server upon connect:
* "220 TiMidity++ v2.13.2 ready)" */
res = timidity_ctl_command(NULL);
if (atoi(res) != 220) {
@@ -178,7 +178,7 @@ int MidiDriver_TIMIDITY::open() {
}
/*
- * setup buf and prepare data connection
+ * setup buf and prepare data connection
*/
/* should read: "200 OK" */
res = timidity_ctl_command("SETBUF %f %f", BUF_LOW_SYNC, BUF_HIGH_SYNC);
@@ -200,7 +200,7 @@ int MidiDriver_TIMIDITY::open() {
}
/*
- * open data connection
+ * open data connection
*/
data_port = atoi(res + 4);
if ((_data_fd = connect_to_server(timidity_host, data_port)) < 0) {