From 14fa1c74cd259e5eda2ae933b58abce4f71968f6 Mon Sep 17 00:00:00 2001 From: marschap Date: Sat, 9 Oct 2004 16:26:45 +0000 Subject: [PATCH] fix my previous commit: use C comment --- server/drivers/hd44780.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;