1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #5182 from kaspar030/fixup_cc1101

drivers: cc110x: compile fix
This commit is contained in:
Martine Lenders 2016-03-26 21:15:38 +01:00
commit 3d21c70932

View File

@ -70,7 +70,7 @@ static int _recv(netdev2_t *dev, char* buf, int len, void *info)
static inline int _get_iid(netdev2_t *netdev, eui64_t *value, size_t max_len)
{
cc110x_t *cc110x = &((netdev2_cc110x_t*) dev)->cc110x;
cc110x_t *cc110x = &((netdev2_cc110x_t*) netdev)->cc110x;
uint8_t *eui64 = (uint8_t*) value;
if (max_len < sizeof(eui64_t)) {