aboutsummaryrefslogtreecommitdiffstats
path: root/drv_USBLCD.c
diff options
context:
space:
mode:
authorreinelt <>2005-04-02 05:28:58 +0000
committerreinelt <>2005-04-02 05:28:58 +0000
commit2d8c20e14ccd6be77bd959d1a5a928e5f6b4ecee (patch)
tree27c0a0d9a1c91737b28a4423a35d66ffb717dc66 /drv_USBLCD.c
parent5f33ee56af142ec69f13422eb0f4eab8741aa0d1 (diff)
downloadlcd4linux-2d8c20e14ccd6be77bd959d1a5a928e5f6b4ecee.tar.gz
[lcd4linux @ 2005-04-02 05:28:58 by reinelt]
fixed gcc4 warnings about signed/unsigned mismatches
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