sscall

UDP based voice chat
git clone git://git.2f30.org/sscall
Log | Files | Refs | README | LICENSE

commit ec22ee612dd4f0fb173a3a6ce6f04d74d46b0057
parent cad411e0e8082d158a1cc93a89bfe81233cf5a0c
Author: sin <sin@2f30.org>
Date:   Mon,  4 Jun 2012 15:17:16 +0100

sscall: Use warn() properly


Diffstat:
Msscall.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sscall.c b/sscall.c @@ -138,7 +138,7 @@ input_pcm(void *data __attribute__ ((unused))) inp_pcm_priv.servinfo->ai_addr, inp_pcm_priv.servinfo->ai_addrlen); if (bytes < 0) - warn("%s", strerror(errno)); + warn("sendto"); usleep(UDELAY_SEND); } } while (1); @@ -297,7 +297,7 @@ main(int argc, char *argv[]) continue; if (bind(srv_sockfd, p1->ai_addr, p1->ai_addrlen) < 0) { close(srv_sockfd); - warn("%s", strerror(errno)); + warn("bind"); continue; } break; @@ -350,7 +350,7 @@ main(int argc, char *argv[]) addr_len, host, sizeof(host), NULL, 0, 0); if (ret < 0) - warn("%s", strerror(errno)); + warn("getnameinfo"); printf("Received %ld bytes from %s\n", bytes, host); }