summary refs log tree commit diff
path: root/net/llc/llc_if.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@sunset.davemloft.net>2005-11-17 15:17:42 -0800
committerDavid S. Miller <davem@sunset.davemloft.net>2005-11-17 15:17:42 -0800
commit381998241fd1fc635596f4e8ae835f0d64ca1ba2 (patch)
tree7e480e6ddba0144fc6029adf4a66fa00f72019bd /net/llc/llc_if.c
parent2fce76afdb067fa3e7f8ee33c9fe366bd65887ea (diff)
downloadlinux-381998241fd1fc635596f4e8ae835f0d64ca1ba2.tar.gz
[LLC]: Fix compiler warnings introduced by TX window scaling changes.
Noticed by Olaf Hering.

The comparisons want a u8 here (the data type on the left-hand branch
is a u8 structure member, and the constant on the right-hand branch is
"~((u8) 128)"), but C turns it into an integer so we get:

net/llc/llc_c_ac.c: In function `llc_conn_ac_inc_npta_value':
net/llc/llc_c_ac.c:998: warning: comparison is always true due to limited range of data type
net/llc/llc_c_ac.c:999: warning: large integer implicitly truncated to unsigned type

Fix this up by explicitly recasting the right-hand branch constant
into a "u8" once more.

Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/llc/llc_if.c')
0 files changed, 0 insertions, 0 deletions