From 54d970d134f3bf820f51266113f1b7489b794fe2 Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Fri, 3 Dec 2010 01:03:10 +0100 Subject: [PATCH] max111x: input field is only used as uint8_t Signed-off-by: Juan Quintela --- hw/max111x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/max111x.c b/hw/max111x.c index 2844665ba3..3adc3e4d2f 100644 --- a/hw/max111x.c +++ b/hw/max111x.c @@ -15,7 +15,7 @@ typedef struct { uint8_t tb1, rb2, rb3; int cycle; - int input[8]; + uint8_t input[8]; int inputs, com; } MAX111xState; -- 2.11.0