aboutsummaryrefslogtreecommitdiffstats
path: root/net/x25/af_x25.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/x25/af_x25.c')
-rw-r--r--net/x25/af_x25.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/x25/af_x25.c b/net/x25/af_x25.c
index 92cfe8e3e0b8..07fad7ccf832 100644
--- a/net/x25/af_x25.c
+++ b/net/x25/af_x25.c
@@ -83,9 +83,9 @@ struct compat_x25_subscrip_struct {
83int x25_addr_ntoa(unsigned char *p, struct x25_address *called_addr, 83int x25_addr_ntoa(unsigned char *p, struct x25_address *called_addr,
84 struct x25_address *calling_addr) 84 struct x25_address *calling_addr)
85{ 85{
86 int called_len, calling_len; 86 unsigned int called_len, calling_len;
87 char *called, *calling; 87 char *called, *calling;
88 int i; 88 unsigned int i;
89 89
90 called_len = (*p >> 0) & 0x0F; 90 called_len = (*p >> 0) & 0x0F;
91 calling_len = (*p >> 4) & 0x0F; 91 calling_len = (*p >> 4) & 0x0F;