diff options
author | Juan Quintela <quintela@redhat.com> | 2010-12-03 01:03:10 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-04-22 14:41:43 -0500 |
commit | 54d970d134f3bf820f51266113f1b7489b794fe2 (patch) | |
tree | aeecb6a6ff81c315cdffd328a170ea1db5548e79 /hw/max111x.c | |
parent | 99838363ba37553321bc6a0274b08c4af65541ea (diff) |
max111x: input field is only used as uint8_t
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'hw/max111x.c')
-rw-r--r-- | hw/max111x.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |