Fixed error message for unsupported events

Este commit está contenido en:
Albert S. 2020-08-20 00:20:52 +02:00
padre 1287532f48
commit 898e114eef
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -498,7 +498,7 @@ void parse_options(int argc, char **argv)
case 'm':
optmask = nameToMask(optarg);
if(optmask == 0) {
logerror("Not supported inotify event: %s\n", optmask);
logerror("Not supported inotify event: %s\n", optarg);
exit(EXIT_FAILURE);
}
mask |= optmask;