aboutsummaryrefslogtreecommitdiffstats
path: root/drv_USBLCD.c
diff options
context:
space:
mode:
Diffstat (limited to 'drv_USBLCD.c')
-rw-r--r--drv_USBLCD.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/drv_USBLCD.c b/drv_USBLCD.c
index ba9ab40..a1e8eba 100644
--- a/drv_USBLCD.c
+++ b/drv_USBLCD.c
@@ -1,4 +1,4 @@
-/* $Id: drv_USBLCD.c,v 1.20 2005/01/30 06:43:22 reinelt Exp $
+/* $Id: drv_USBLCD.c,v 1.21 2005/04/02 05:28:58 reinelt Exp $
*
* new style driver for USBLCD displays
*
@@ -26,6 +26,9 @@
*
*
* $Log: drv_USBLCD.c,v $
+ * Revision 1.21 2005/04/02 05:28:58 reinelt
+ * fixed gcc4 warnings about signed/unsigned mismatches
+ *
* Revision 1.20 2005/01/30 06:43:22 reinelt
* driver for LCD-Linux finished
*
@@ -165,8 +168,8 @@ static char Name[] = "USBLCD";
static char *Port = NULL;
static int use_libusb = 0;
static int usblcd_file;
-static unsigned char *Buffer;
-static unsigned char *BufPtr;
+static char *Buffer;
+static char *BufPtr;
#ifdef HAVE_USB_H