diff options
author | Bernhard Rosenkränzer <Bernhard.Rosenkranzer@linaro.org> | 2013-12-12 10:28:16 +0100 |
---|---|---|
committer | JP Abgrall <jpa@google.com> | 2014-01-02 23:58:14 +0000 |
commit | a33592bd08a20c6a521b8508975b7a74ecdf4f03 (patch) | |
tree | 90688df2eaee12c089b54cf55ec9aeb40313bfeb /config.c | |
parent | 4e0dd83686869c292e162dc76992863d3f3a3c38 (diff) | |
download | android_external_android-clat-a33592bd08a20c6a521b8508975b7a74ecdf4f03.tar.gz android_external_android-clat-a33592bd08a20c6a521b8508975b7a74ecdf4f03.tar.bz2 android_external_android-clat-a33592bd08a20c6a521b8508975b7a74ecdf4f03.zip |
Remove unused variables
Remove unused variables -- they cause warnings (and errors with
-Werror) when building with clang 3.4.
Change-Id: I03fff9b1b9d620763f41c8b31a19c4724726739c
Signed-off-by: Bernhard Rosenkränzer <Bernhard.Rosenkranzer@linaro.org>
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -154,7 +154,7 @@ void free_config() { * does dns lookups to set the plat subnet or exits on failure, waits forever for a dns response with a query backoff timer */ void dns64_detection() { - int i, backoff_sleep, status; + int backoff_sleep, status; struct in6_addr tmp_ptr; backoff_sleep = 1; |