1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

unsgined char -> byte

This commit is contained in:
Pavel Tvrdík
2015-05-19 08:14:04 +02:00
committed by Ondrej Zajicek
parent 398f922531
commit e348ef01b4
4 changed files with 4 additions and 4 deletions

View File

@@ -130,7 +130,7 @@ static inline void
sk_process_cmsg4_ttl(sock *s, struct cmsghdr *cm)
{
if (cm->cmsg_type == IP_RECVTTL)
s->rcv_ttl = * (unsigned char *) CMSG_DATA(cm);
s->rcv_ttl = * (byte *) CMSG_DATA(cm);
}
static inline void