summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/net/pppcompress.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2005-04-28 21:49:50 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2005-04-28 21:49:50 +0000
commit3274c87676e11cfbf1f6d3d554762ecdea47fe79 (patch)
tree4824c477c358154c6bb33d0e8379ff36f0039b20 /cpukit/libnetworking/net/pppcompress.c
parent2005-04-28 Jennifer Averett <jennifer.averett@oarcorp.com> (diff)
downloadrtems-3274c87676e11cfbf1f6d3d554762ecdea47fe79.tar.bz2
2005-04-28 Joel Sherrill <joel@OARcorp.com>
* libnetworking/kern/kern_sysctl.c, libnetworking/libc/inet_ntop.c, libnetworking/net/if_ppp.c, libnetworking/net/pppcompress.c, libnetworking/net/slcompress.c, libnetworking/netinet/ip_output.c, libnetworking/netinet/udp_usrreq.c, libnetworking/nfs/bootp_subr.c, libnetworking/rtems/rtems_select.c, libnetworking/rtems/rtems_showifstat.c, libnetworking/rtems/rtems_showroute.c, libnetworking/rtems/rtems_syscall.c: Fixed type mismatch and uninitialized variable warnings.
Diffstat (limited to 'cpukit/libnetworking/net/pppcompress.c')
-rw-r--r--cpukit/libnetworking/net/pppcompress.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpukit/libnetworking/net/pppcompress.c b/cpukit/libnetworking/net/pppcompress.c
index e68d7c4e91..b87c662c18 100644
--- a/cpukit/libnetworking/net/pppcompress.c
+++ b/cpukit/libnetworking/net/pppcompress.c
@@ -405,7 +405,8 @@ vj_uncompress_tcp(bufp, len, type, comp)
struct vjcompress *comp;
{
u_char *hdr, *cp;
- int hlen, vjlen;
+ u_int hlen;
+ int vjlen;
cp = bufp? *bufp: NULL;
vjlen = vj_uncompress_tcp_core(cp, len, len, type, comp, &hdr, &hlen);