diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2008-12-17 18:04:49 -0800 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2008-12-17 18:04:49 -0800 |
commit | df7881f07f53b041dc0568be8528e9dbb74994cc (patch) | |
tree | 1b3e036f7df4241bf0c2d527b73198c50e1d7891 /telephony | |
parent | 55f4e4a5ec657a017e3bf75299ad71fd1c968dd3 (diff) | |
download | external_qemu-df7881f07f53b041dc0568be8528e9dbb74994cc.zip external_qemu-df7881f07f53b041dc0568be8528e9dbb74994cc.tar.gz external_qemu-df7881f07f53b041dc0568be8528e9dbb74994cc.tar.bz2 |
Code drop from //branches/cupcake/...@124589
Diffstat (limited to 'telephony')
-rw-r--r-- | telephony/sysdeps_qemu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/telephony/sysdeps_qemu.c b/telephony/sysdeps_qemu.c index e1107aa..469e0fe 100644 --- a/telephony/sysdeps_qemu.c +++ b/telephony/sysdeps_qemu.c @@ -315,11 +315,11 @@ SysChannel sys_channel_create_tcp_server( int port ) { SysChannel channel = sys_channel_alloc(); - const int BACKLOG = 4; channel->fd = socket_anyaddr_server( port, SOCK_STREAM ); if (channel->fd < 0) { - D( "%s: failed to created network socket on TCP:%d\n", port ); + D( "%s: failed to created network socket on TCP:%d\n", + __FUNCTION__, port ); sys_channel_free( channel ); return NULL; } |