fix signed warning

This commit is contained in:
Bernd Walter 2010-03-09 00:48:06 +00:00
parent 8f82dfe5d1
commit 1dca0648c7

View File

@ -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));
}