Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cd139781 authored by Dan Carpenter's avatar Dan Carpenter Committed by David S. Miller
Browse files

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: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 661dbf34
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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';