diff options
-rw-r--r-- | src/g80_output.c | 2 | ||||
-rw-r--r-- | src/g80_type.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/g80_output.c b/src/g80_output.c index 53c0954..d2ea9ee 100644 --- a/src/g80_output.c +++ b/src/g80_output.c @@ -32,7 +32,7 @@ #include "g80_display.h" #include "g80_output.h" -static CARD32 G80FindLoadVal(const unsigned char *table1) +static unsigned G80FindLoadVal(const unsigned char *table1) { const unsigned char *p = table1; int count; diff --git a/src/g80_type.h b/src/g80_type.h index fc31085..5f4ee08 100644 --- a/src/g80_type.h +++ b/src/g80_type.h @@ -56,7 +56,7 @@ typedef struct G80Rec { Bool present; ORNum or; } lvds; - CARD32 loadVal; + unsigned loadVal; xf86Int10InfoPtr int10; int int10Mode; /* Console mode to restore */ |