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
commit 4db42b6242

View file

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