[<prev] [next>] [day] [month] [year] [list]
Message-ID: <CAMzoamZCXdzoxzuv_KfQsdtRa5Cc0+64N-Vodb62bJgdZeZqPQ@mail.gmail.com>
Date: Mon, 30 May 2016 08:52:32 +0100
From: David Binderman <linuxdev.baldrick@...il.com>
To: isdn@...ux-pingi.de, netdev@...r.kernel.org
Subject: linux-4.7-rc1/drivers/isdn/capi/capidrv.c:1707]: (style) Redundant condition
Hello there,
linux-4.7-rc1/drivers/isdn/capi/capidrv.c:1707]: (style) Redundant
condition: If 'EXPR == ' '', the comparison 'EXPR' is always true.
Source code is
while (*s && *s == ' ') s++;
Suggest new code
while (*s == ' ') s++;
Regards
David Binderman
Powered by blists - more mailing lists