From 50c15f980d8e5d4cf56ad5e0265467846c209f56 Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Mon, 24 Nov 2014 10:04:56 -0800 Subject: [PATCH] Libcutils: Remove unused variable For build-system CFLAGS clean-up, remove unused variable. Change-Id: Iaf6dd7b84ee4ef4734a48b37a4d0ca8287ca5fb5 --- libcutils/socket_network_client.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libcutils/socket_network_client.c b/libcutils/socket_network_client.c index 48260330e..e0031ba0a 100644 --- a/libcutils/socket_network_client.c +++ b/libcutils/socket_network_client.c @@ -45,7 +45,6 @@ int socket_network_client_timeout(const char *host, int port, int type, int time { struct hostent *hp; struct sockaddr_in addr; - socklen_t alen; int s; int flags = 0, error = 0, ret = 0; fd_set rset, wset;