On Fri, Feb 22, 2013 at 12:13:30PM +0100, Kurt Kanzenbach wrote:
> This patch fixes the following checkpatch error:
> -ERROR: do not use assignment in if condition
> 
> Signed-off-by: Kurt Kanzenbach <ly80t...@cip.cs.fau.de>
> ---
>  drivers/staging/usbip/userspace/libsrc/names.c |   11 +++++++----
>  1 file changed, 7 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/staging/usbip/userspace/libsrc/names.c 
> b/drivers/staging/usbip/userspace/libsrc/names.c
> index a66f539..3b151df 100644
> --- a/drivers/staging/usbip/userspace/libsrc/names.c
> +++ b/drivers/staging/usbip/userspace/libsrc/names.c
> @@ -491,9 +491,11 @@ static void parse(FILE *f)
>       while (fgets(buf, sizeof(buf), f)) {
>               linectr++;
>               /* remove line ends */
> -             if ((cp = strchr(buf, 13)))
> +             cp = strchr(buf, 13);

This is for another patch but 13 is '\r'

> +             if (cp)
>                       *cp = 0;
> -             if ((cp = strchr(buf, 10)))
> +             cp = strchr(buf, 10);

and 10 is '\n'.

regards,
dan carpenter


--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to