aboutsummaryrefslogtreecommitdiffhomepage
path: root/backends/rtpmidi.c
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2020-04-21 00:20:23 +0200
committercbdev <cb@cbcdn.com>2020-04-21 00:20:23 +0200
commitbc275e10defe27e6d288ccf9125fe9b915168240 (patch)
treed27a955332d1d1c187352dbe9631117d4e93bfc0 /backends/rtpmidi.c
parent918fb606174dcf42553be65e3d2306996c52488f (diff)
downloadmidimonster-bc275e10defe27e6d288ccf9125fe9b915168240.tar.gz
midimonster-bc275e10defe27e6d288ccf9125fe9b915168240.tar.bz2
midimonster-bc275e10defe27e6d288ccf9125fe9b915168240.zip
Do not load lua backend automatically on Windows
Diffstat (limited to 'backends/rtpmidi.c')
-rw-r--r--backends/rtpmidi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/rtpmidi.c b/backends/rtpmidi.c
index 52cb0c5..7df8563 100644
--- a/backends/rtpmidi.c
+++ b/backends/rtpmidi.c
@@ -525,7 +525,7 @@ static int rtpmidi_applecommand(instance* inst, struct sockaddr* dest, socklen_t
//FIXME should we match sending/receiving ports? if the reference does this, it should be documented
bytes = sendto(control ? data->control_fd : data->fd, frame, sizeof(apple_command) + strlen(inst->name) + 1, 0, dest, dest_len);
if(bytes != sizeof(apple_command) + strlen(inst->name) + 1){
- LOGPF("Failed to transmit session command on %s", inst->name);
+ LOGPF("Failed to transmit session command on %s: %s", inst->name, mmbackend_socket_strerror(errno));
return 1;
}
return 0;