diff --git a/server/drivers/hd44780.c b/server/drivers/hd44780.c index 15e7b79..5e0bdcd 100644 --- a/server/drivers/hd44780.c +++ b/server/drivers/hd44780.c @@ -164,7 +164,7 @@ HD44780_init (Driver * drvthis, char *args) return -1; // fatal error } else { p->connectiontype_index = i; - # check if ConnectionType contains the string "USB" or "usb" + /* check if ConnectionType contains the string "USB" or "usb" */ if ((strstr(connectionMapping[i].name, "usb") != NULL) || (strstr(connectionMapping[i].name, "USB") != NULL)) usb = 1;