dect
/
linux-2.6
Archived
13
0
Fork 0

batman-adv: get rid of pointless cast in memcpy()

memcpy() arguments are void *, precisely to avoid that kind of pointless
casts.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Sven Eckelmann <sven@narfation.org>
This commit is contained in:
Al Viro 2012-04-22 07:50:29 +01:00 committed by Antonio Quartulli
parent 08ad76ecc9
commit 1a5852d81a
1 changed files with 1 additions and 1 deletions

View File

@ -510,7 +510,7 @@ static void bla_send_announce(struct bat_priv *bat_priv,
memcpy(mac, announce_mac, 4);
crc = htons(backbone_gw->crc);
memcpy(&mac[4], (uint8_t *)&crc, 2);
memcpy(&mac[4], &crc, 2);
bla_send_claim(bat_priv, mac, backbone_gw->vid, CLAIM_TYPE_ANNOUNCE);