summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/net/pppcompress.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libnetworking/net/pppcompress.c')
-rw-r--r--cpukit/libnetworking/net/pppcompress.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/libnetworking/net/pppcompress.c b/cpukit/libnetworking/net/pppcompress.c
index 5c924e0446..ea98bdd852 100644
--- a/cpukit/libnetworking/net/pppcompress.c
+++ b/cpukit/libnetworking/net/pppcompress.c
@@ -426,10 +426,10 @@ vj_uncompress_tcp(bufp, len, type, comp)
* header (we assume the packet we were handed has enough space to
* prepend 128 bytes of header).
*/
- if ((int)cp & 3) {
+ if ((intptr_t)cp & 3) {
if (len > 0)
- (void) ovbcopy(cp, (caddr_t)((int)cp &~ 3), len);
- cp = (u_char *)((int)cp &~ 3);
+ (void) ovbcopy(cp, (caddr_t)((intptr_t)cp &~ 3), len);
+ cp = (u_char *)((intptr_t)cp &~ 3);
}
cp -= hlen;
len += hlen;