Re: [PATCH] trivial fs/select.c compiler warning fix

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Whoops. Looks like Russell King already created a more elaborate patch
for this problem yesterday ([email protected]).

On Sat, 08 Apr 2006, Horst Schirmeier wrote:
> This trivial patch fixes
> fs/select.c: In function `core_sys_select':
> fs/select.c:339: warning: assignment from incompatible pointer type
> fs/select.c:376: warning: comparison of distinct pointer types lacks a cast
> by casting to (char *) when accessing stack_fds.
> 
> Signed-off-by: Horst Schirmeier <[email protected]>
> 
> ---
> 
> diff --git a/fs/select.c b/fs/select.c
> index 071660f..3025cec 100644
> --- a/fs/select.c
> +++ b/fs/select.c
> @@ -336,7 +336,7 @@ static int core_sys_select(int n, fd_set
>  	ret = -ENOMEM;
>  	size = FDS_BYTES(n);
>  	if (6*size < SELECT_STACK_ALLOC)
> -		bits = stack_fds;
> +		bits = (char *) stack_fds;
>  	else
>  		bits = kmalloc(6 * size, GFP_KERNEL);
>  	if (!bits)
> @@ -373,7 +373,7 @@ static int core_sys_select(int n, fd_set
>  		ret = -EFAULT;
>  
>  out:
> -	if (bits != stack_fds)
> +	if (bits != (char *) stack_fds)
>  		kfree(bits);
>  out_nofds:
>  	return ret;
> 

-- 
PGP-Key 0xD40E0E7A
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Stuff]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]     [Linux Resources]
  Powered by Linux