diff options
author | Johan Hedberg <johan.hedberg@nokia.com> | 2007-06-09 06:26:01 +0000 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@nokia.com> | 2007-06-09 06:26:01 +0000 |
commit | 9217b7d4f85216946943ab588e06b6bcd2f1b5bc (patch) | |
tree | be31b0731cc445653737ae38fe4a9ead9443d555 /audio/unix.c | |
parent | 019dd58ff876fcdaae5a7cd257822955d28b5b96 (diff) |
Code cleanup
Diffstat (limited to 'audio/unix.c')
-rw-r--r-- | audio/unix.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/audio/unix.c b/audio/unix.c index f2bf2271..76650b75 100644 --- a/audio/unix.c +++ b/audio/unix.c @@ -85,9 +85,11 @@ static gboolean unix_event(GIOChannel *chan, GIOCondition cond, gpointer data) pkt->type = PKT_TYPE_CFG_RSP; pkt->length = sizeof(struct ipc_data_cfg); pkt->error = PKT_ERROR_NONE; + len = sendto(sk, pkt, len, 0, (struct sockaddr *) &addr, addrlen); if (len < 0) info("Error %s(%d)", strerror(errno), errno); + info("%d bytes sent", len); break; case PKT_TYPE_STATUS_REQ: |