mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-03 03:40:27 +00:00
fix build
git-svn-id: http://svn.openzap.org/svn/openzap/trunk@659 a93c3328-9c30-0410-af19-c9cd2b2d52af
This commit is contained in:
parent
2e24552fa5
commit
d424569f34
@ -9,7 +9,9 @@ struct helper {
|
|||||||
zap_status_t my_write_sample(int16_t *buf, zap_size_t buflen, void *user_data)
|
zap_status_t my_write_sample(int16_t *buf, zap_size_t buflen, void *user_data)
|
||||||
{
|
{
|
||||||
struct helper *foo = (struct helper *) user_data;
|
struct helper *foo = (struct helper *) user_data;
|
||||||
write(foo->fd, buf, buflen * 2);
|
size_t len;
|
||||||
|
len = write(foo->fd, buf, buflen * 2);
|
||||||
|
if (!len) return ZAP_FAIL;
|
||||||
foo->wrote += buflen * 2;
|
foo->wrote += buflen * 2;
|
||||||
return ZAP_SUCCESS;
|
return ZAP_SUCCESS;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user