Fix typos from a previous commit

This commit is contained in:
Gregory Nutt
2015-09-08 12:45:30 -06:00
parent 366e3d3353
commit afdb3c751a
3 changed files with 3 additions and 3 deletions

2
arch

Submodule arch updated: 139a8394ac...a2df8e045e

Submodule configs updated: 02a07e4dfc...a6a7289dbc

View File

@@ -450,7 +450,7 @@ void cc1101_dumpregs(struct cc1101_dev_s * dev, uint8_t addr, uint8_t length)
{
uint8_t buf[0x30], i;
cc1101_access(dev, addr, FAR uint8_t *buf, length);
cc1101_access(dev, addr, (FAR uint8_t *)buf, length);
printf("CC1101[%2x]: ", addr);
for (i=0; i<length; i++) printf(" %2x,", buf[i]);