diff options
| author | Lennart Poettering <lennart@poettering.net> | 2009-10-30 04:55:13 +0100 | 
|---|---|---|
| committer | Lennart Poettering <lennart@poettering.net> | 2009-10-30 04:55:13 +0100 | 
| commit | a82c6b0cd5fa075b5a750e6416b7a7f0cd2508c7 (patch) | |
| tree | 1e2698cbcc3b8568142b8e055aade18e241f0874 /src/pulsecore/socket-util.c | |
| parent | 75f7a971db587d554fffc15801a2d8f7497a2124 (diff) | |
socket-util: drop redundant casts
Diffstat (limited to 'src/pulsecore/socket-util.c')
| -rw-r--r-- | src/pulsecore/socket-util.c | 24 | 
1 files changed, 12 insertions, 12 deletions
| diff --git a/src/pulsecore/socket-util.c b/src/pulsecore/socket-util.c index 0d0762dc..2cc9882a 100644 --- a/src/pulsecore/socket-util.c +++ b/src/pulsecore/socket-util.c @@ -151,7 +151,7 @@ void pa_make_socket_low_delay(int fd) {      pa_assert(fd >= 0);      priority = 6; -    if (setsockopt(fd, SOL_SOCKET, SO_PRIORITY, (void*)&priority, sizeof(priority)) < 0) +    if (setsockopt(fd, SOL_SOCKET, SO_PRIORITY, &priority, sizeof(priority)) < 0)          pa_log_warn("SO_PRIORITY failed: %s", pa_cstrerror(errno));  #endif  } @@ -165,9 +165,9 @@ void pa_make_tcp_socket_low_delay(int fd) {      {          int on = 1;  #if defined(SOL_TCP) -        if (setsockopt(fd, SOL_TCP, TCP_NODELAY, (void*)&on, sizeof(on)) < 0) +        if (setsockopt(fd, SOL_TCP, TCP_NODELAY, &on, sizeof(on)) < 0)  #else -        if (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (void*)&on, sizeof(on)) < 0) +        if (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on)) < 0)  #endif              pa_log_warn("TCP_NODELAY failed: %s", pa_cstrerror(errno));      } @@ -177,9 +177,9 @@ void pa_make_tcp_socket_low_delay(int fd) {      {          int tos = IPTOS_LOWDELAY;  #ifdef SOL_IP -        if (setsockopt(fd, SOL_IP, IP_TOS, (void*)&tos, sizeof(tos)) < 0) +        if (setsockopt(fd, SOL_IP, IP_TOS, &tos, sizeof(tos)) < 0)  #else -        if (setsockopt(fd, IPPROTO_IP, IP_TOS, (void*)&tos, sizeof(tos)) < 0) +        if (setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) < 0)  #endif              pa_log_warn("IP_TOS failed: %s", pa_cstrerror(errno));      } @@ -195,9 +195,9 @@ void pa_make_udp_socket_low_delay(int fd) {      {          int tos = IPTOS_LOWDELAY;  #ifdef SOL_IP -        if (setsockopt(fd, SOL_IP, IP_TOS, (void*)&tos, sizeof(tos)) < 0) +        if (setsockopt(fd, SOL_IP, IP_TOS, &tos, sizeof(tos)) < 0)  #else -        if (setsockopt(fd, IPPROTO_IP, IP_TOS, (void*)&tos, sizeof(tos)) < 0) +        if (setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) < 0)  #endif              pa_log_warn("IP_TOS failed: %s", pa_cstrerror(errno));      } @@ -205,11 +205,11 @@ void pa_make_udp_socket_low_delay(int fd) {  }  int pa_socket_set_rcvbuf(int fd, size_t l) { -    int bufsz = (int)l; +    int bufsz = (int) l;      pa_assert(fd >= 0); -    if (setsockopt(fd, SOL_SOCKET, SO_RCVBUF, (void*)&bufsz, sizeof(bufsz)) < 0) { +    if (setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &bufsz, sizeof(bufsz)) < 0) {          pa_log_warn("SO_RCVBUF: %s", pa_cstrerror(errno));          return -1;      } @@ -218,12 +218,12 @@ int pa_socket_set_rcvbuf(int fd, size_t l) {  }  int pa_socket_set_sndbuf(int fd, size_t l) { -    int bufsz = (int)l; +    int bufsz = (int) l;      pa_assert(fd >= 0); -    if (setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (void*)&bufsz, sizeof(bufsz)) < 0) { -        pa_log("SO_SNDBUF: %s", pa_cstrerror(errno)); +    if (setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &bufsz, sizeof(bufsz)) < 0) { +        pa_log_warn("SO_SNDBUF: %s", pa_cstrerror(errno));          return -1;      } | 
