From 0eaa5b8e6c2b4ba5b5b88747d47a7bc125377faf Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Thu, 12 May 2016 16:58:23 +0200 Subject: gtp: fix several compilation warnings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CC gtpie.lo gtpie.c: In function 'gtpie_encaps': gtpie.c:437:22: warning: variable 'm' set but not used [-Wunused-but-set-variable] union gtpie_member *m; ^ gtpie.c: In function 'gtpie_encaps2': gtpie.c:537:22: warning: variable 'm' set but not used [-Wunused-but-set-variable] union gtpie_member *m; ^ lookup.c: In function ‘lookup’: lookup.c:40:24: warning: typedef ‘ub1’ locally defined but not used [-Wunused-local-typedefs] typedef unsigned char ub1; /* unsigned 1-byte quantities */ ^ Still one compilation warning left in cmdline.c, but that code is autogenerated. --- gtp/gtpie.c | 4 ---- lib/lookup.c | 1 - 2 files changed, 5 deletions(-) diff --git a/gtp/gtpie.c b/gtp/gtpie.c index 232183e..a45df1c 100644 --- a/gtp/gtpie.c +++ b/gtp/gtpie.c @@ -434,7 +434,6 @@ int gtpie_encaps(union gtpie_member *ie[], void *pack, unsigned *len) int i; unsigned char *p; unsigned char *end; - union gtpie_member *m; int iesize; p = pack; @@ -445,7 +444,6 @@ int gtpie_encaps(union gtpie_member *ie[], void *pack, unsigned *len) if (ie[i] != 0) { if (GTPIE_DEBUG) printf("gtpie_encaps. Type %d\n", i); - m = (union gtpie_member *)p; switch (i) { case GTPIE_CAUSE: /* TV GTPIE types with value length 1 */ case GTPIE_REORDER: @@ -534,7 +532,6 @@ int gtpie_encaps2(union gtpie_member ie[], unsigned int size, unsigned int i, j; unsigned char *p; unsigned char *end; - union gtpie_member *m; int iesize; p = pack; @@ -548,7 +545,6 @@ int gtpie_encaps2(union gtpie_member ie[], unsigned int size, printf ("gtpie_encaps. Number %d, Type %d\n", i, ie[i].t); - m = (union gtpie_member *)p; switch (ie[i].t) { case GTPIE_CAUSE: /* TV GTPIE types with value length 1 */ case GTPIE_REORDER: diff --git a/lib/lookup.c b/lib/lookup.c index d2f13c4..0dad247 100755 --- a/lib/lookup.c +++ b/lib/lookup.c @@ -37,7 +37,6 @@ register unsigned long int level; /* the previous hash, or an arbitrary value */ } typedef unsigned long int ub4; /* unsigned 4-byte quantities */ - typedef unsigned char ub1; /* unsigned 1-byte quantities */ register unsigned long int a, b, c, len; /* Set up the internal state */ -- cgit v1.2.3