From b9434327f4009651d690c6c5c60246819383382c Mon Sep 17 00:00:00 2001 From: ticso Date: Tue, 9 Mar 2010 00:48:06 +0000 Subject: fix signed warning --- sys/boot/arm/at91/boot2/bwct_board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/boot/arm/at91/boot2/bwct_board.c b/sys/boot/arm/at91/boot2/bwct_board.c index 20f4140..df9f51c 100644 --- a/sys/boot/arm/at91/boot2/bwct_board.c +++ b/sys/boot/arm/at91/boot2/bwct_board.c @@ -21,7 +21,7 @@ static void DS1672_Init(); static void DS1672_Init() { - uint8_t buf[] = {0x00, 0xa9}; + char buf[] = {0x00, 0xa9}; EEWrite(0xd0, buf, sizeof(buf)); } -- cgit v1.1