1
0
Fork 0

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>
hifive-unleashed-5.1
Roel Kluin 2008-02-06 01:38:30 -08:00 committed by Linus Torvalds
parent ee51ef0ecb
commit 3eb1a6f384
1 changed files with 1 additions and 1 deletions

View File

@ -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 */
}