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

Commit 3eb1a6f3 authored by Roel Kluin's avatar Roel Kluin Committed by Linus Torvalds
Browse files

drivers/isdn/hardware/eicon/message.c fix 'and' typo in eicons' AddInfo()



'!' has a higher priority than '&'.

Signed-off-by: default avatarRoel Kluin <12o3l@tiscali.nl>
Cc: Karsten Keil <kkeil@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent ee51ef0e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 */
  }