Changeset 487b2b1e7439028935350ce5550afcac098bd5f3

Show
Ignore:
Timestamp:
03/03/08 19:13:32 (6 months ago)
Author:
Rémi Duraffort <ivoire@via.ecp.fr>
git-committer:
Rémi Duraffort <ivoire@via.ecp.fr> 1204568012 +0100
git-parent:

[9db336f33fec96c4e647a1302b2307a96ea805ee]

git-author:
Rémi Duraffort <ivoire@via.ecp.fr> 1204567524 +0100
Message:

Use (void) instead of VLC_UNUSED (with pierre agreement)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/network/rootwrap.c

    r86fffb2 r487b2b1  
    443443                   const struct sockaddr *addr, size_t alen) 
    444444{ 
    445     VLC_UNUSED(family)
    446     VLC_UNUSED(socktype)
    447     VLC_UNUSED(protocol)
    448     VLC_UNUSED(addr)
    449     VLC_UNUSED(alen)
     445    (void)family
     446    (void)socktype
     447    (void)protocol
     448    (void)addr
     449    (void)alen
    450450    return -1; 
    451451}