softsynth: on error, be clear we are talking about /dev/softsynth

This commit is contained in:
Samuel Thibault 2021-08-21 14:53:27 +02:00 committed by Alexander Epaneshnikov
commit 316e4fc51d

View file

@ -249,7 +249,7 @@ int open_softsynth(void)
// Kernel without unicode support? Try without unicode. // Kernel without unicode support? Try without unicode.
softFD = open("/dev/softsynth", O_RDWR | O_NONBLOCK); softFD = open("/dev/softsynth", O_RDWR | O_NONBLOCK);
if (softFD < 0) { if (softFD < 0) {
perror("Unable to open the softsynth device"); perror("Unable to open the /dev/softsynth device");
rc = -1; rc = -1;
} }
return rc; return rc;