svn commit: r204899 - head/sys/boot/arm/at91/boot2
Bernd Walter
ticso at FreeBSD.org
Tue Mar 9 00:48:07 UTC 2010
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));
}
More information about the svn-src-head
mailing list