Author: ticso
Date: Tue Mar 9 00:48:06 2010
New Revision: 204899
URL: http://svn.freebsd.org/changeset/base/204899
Log:
fix signed warning
Modified:
head/sys/boot/arm/at91/boot2/bwct_board.c
Modified: head/sys/boot/arm/at91/boot2/bwct_board.c
==============================================================================
--- head/sys/boot/arm/at91/boot2/bwct_board.c Mon Mar 8 23:06:09 2010
(r204898)
+++ head/sys/boot/arm/at91/boot2/bwct_board.c Tue Mar 9 00:48:06 2010
(r204899)
@@ -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));
}
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"