isdn/hisax: hex vs decimal typo in prfeatureind()
This is a static checker fix, but judging from the context then I think hexidecimal 0x80 is intended here instead of decimal 80. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
661dbf3412
commit
cd13978154
|
@ -810,7 +810,7 @@ prfeatureind(char *dest, u_char *p)
|
|||
dp += sprintf(dp, " octet 3 ");
|
||||
dp += prbits(dp, *p, 8, 8);
|
||||
*dp++ = '\n';
|
||||
if (!(*p++ & 80)) {
|
||||
if (!(*p++ & 0x80)) {
|
||||
dp += sprintf(dp, " octet 4 ");
|
||||
dp += prbits(dp, *p++, 8, 8);
|
||||
*dp++ = '\n';
|
||||
|
|
Loading…
Reference in New Issue