aboutsummaryrefslogtreecommitdiffstats
path: root/hw/baum.c
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2009-06-13 13:19:25 +0000
committerBlue Swirl <blauwirbel@gmail.com>2009-06-13 13:19:25 +0000
commit4f72c4dded904e77b68b14a80a749add1ec2992b (patch)
tree08b493ee1094ab0b92eaec0bd9d951439e1e1794 /hw/baum.c
parent3e3cabcff9cbddb966833dce432b1409506b4d5b (diff)
Fix signedness problems
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/baum.c')
-rw-r--r--hw/baum.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/baum.c b/hw/baum.c
index f6d6e67d4..c9135b524 100644
--- a/hw/baum.c
+++ b/hw/baum.c
@@ -90,7 +90,7 @@ typedef struct {
brlapi_handle_t *brlapi;
int brlapi_fd;
- int x, y;
+ unsigned int x, y;
uint8_t in_buf[BUF_SIZE];
uint8_t in_buf_used;
@@ -356,12 +356,12 @@ static int baum_eat_packet(BaumDriverState *baum, const uint8_t *buf, int len)
.displayNumber = BRLAPI_DISPLAY_DEFAULT,
.regionBegin = 1,
.regionSize = baum->x * baum->y,
- .text = text,
+ .text = (char *)text,
.textSize = baum->x * baum->y,
.andMask = zero,
.orMask = cells,
.cursor = cursor,
- .charset = "ISO-8859-1",
+ .charset = (char *)"ISO-8859-1",
};
if (brlapi__write(baum->brlapi, &wa) == -1)