summaryrefslogtreecommitdiffstats
path: root/icmp.c
diff options
context:
space:
mode:
authorBernhard Rosenkränzer <Bernhard.Rosenkranzer@linaro.org>2013-12-12 10:28:16 +0100
committerJP Abgrall <jpa@google.com>2014-01-02 23:58:14 +0000
commita33592bd08a20c6a521b8508975b7a74ecdf4f03 (patch)
tree90688df2eaee12c089b54cf55ec9aeb40313bfeb /icmp.c
parent4e0dd83686869c292e162dc76992863d3f3a3c38 (diff)
downloadandroid_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 'icmp.c')
-rw-r--r--icmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/icmp.c b/icmp.c
index af96b83..75a4a4d 100644
--- a/icmp.c
+++ b/icmp.c
@@ -139,7 +139,7 @@ uint8_t icmp6_to_icmp_type(uint8_t type, uint8_t code) {
}
// We don't understand this ICMP type. Return parameter problem so the caller will bail out.
- logmsg_dbg(ANDROID_LOG_DEBUG, "icmp6_to_icmp_type: unhandled ICMP type %d", type);
+ logmsg_dbg(ANDROID_LOG_DEBUG, "icmp6_to_icmp_type: unhandled ICMP type/code %d/%d", type, code);
return ICMP_PARAMETERPROB;
}