aboutsummaryrefslogtreecommitdiffstats
path: root/display.h
diff options
context:
space:
mode:
authorreinelt <>2000-03-25 05:50:43 +0000
committerreinelt <>2000-03-25 05:50:43 +0000
commit2c038ac106629d78c31763f8c8498e579b3b672c (patch)
treee0a3e000e02552dd1bed71381d54ace8b9fc4c07 /display.h
parent800d7b54d618d4c66fcd15f762333959af08ddd1 (diff)
downloadlcd4linux-2c038ac106629d78c31763f8c8498e579b3b672c.tar.gz
[lcd4linux @ 2000-03-25 05:50:43 by reinelt]
memory leak in Raster_flush closed driver family logic changed
Diffstat (limited to 'display.h')
-rw-r--r--display.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/display.h b/display.h
index 208ba83..f519467 100644
--- a/display.h
+++ b/display.h
@@ -1,4 +1,4 @@
-/* $Id: display.h,v 1.8 2000/03/22 15:36:21 reinelt Exp $
+/* $Id: display.h,v 1.9 2000/03/25 05:50:43 reinelt Exp $
*
* framework for device drivers
*
@@ -20,6 +20,11 @@
*
*
* $Log: display.h,v $
+ * Revision 1.9 2000/03/25 05:50:43 reinelt
+ *
+ * memory leak in Raster_flush closed
+ * driver family logic changed
+ *
* Revision 1.8 2000/03/22 15:36:21 reinelt
*
* added '-l' switch (list drivers)
@@ -69,7 +74,7 @@
#define BAR_HV (BAR_H | BAR_V)
typedef struct DISPLAY {
- char name[16];
+ char *name;
int rows;
int cols;
int xres;
@@ -83,7 +88,7 @@ typedef struct DISPLAY {
} DISPLAY;
typedef struct {
- char name[16];
+ char *name;
DISPLAY *Display;
} FAMILY;