mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
drivers/isdn/hardware/eicon/message.c fix 'and' typo in eicons' AddInfo()
'!' has a higher priority than '&'. Signed-off-by: Roel Kluin <12o3l@tiscali.nl> Cc: Karsten Keil <kkeil@suse.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
ee51ef0ecb
commit
3eb1a6f384
@ -9027,7 +9027,7 @@ static byte AddInfo(byte **add_i,
|
||||
/* facility is a nested structure */
|
||||
/* FTY can be more than once */
|
||||
|
||||
if(esc_chi[0] && !(esc_chi[esc_chi[0]])&0x7f )
|
||||
if (esc_chi[0] && !(esc_chi[esc_chi[0]] & 0x7f))
|
||||
{
|
||||
add_i[0] = (byte *)"\x02\x02\x00"; /* use neither b nor d channel */
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user