bug-hurd
[Top][All Lists]
Advanced

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

Re: [PATCH 5/9] ext2fs: fix compiler warning


From: Samuel Thibault
Subject: Re: [PATCH 5/9] ext2fs: fix compiler warning
Date: Fri, 6 Jun 2014 17:28:09 +0200
User-agent: Mutt/1.5.21+34 (58baf7c9f32f) (2010-12-30)

Justus Winter, le Fri 06 Jun 2014 16:42:14 +0200, a écrit :
> * ext2fs/pager.c (disk_cache_block_ref): block cannot be negative.

Ack.

> ---
>  ext2fs/pager.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/ext2fs/pager.c b/ext2fs/pager.c
> index ce5bc6d..39cf1c7 100644
> --- a/ext2fs/pager.c
> +++ b/ext2fs/pager.c
> @@ -957,7 +957,7 @@ disk_cache_block_ref (block_t block)
>    int index;
>    void *bptr;
>  
> -  assert (0 <= block && block < store->size >> log2_block_size);
> +  assert (block < store->size >> log2_block_size);
>  
>    ext2_debug ("(%u)", block);
>  
> -- 
> 2.0.0.rc2
> 

-- 
Samuel
<S> KK1 a 1 conseil de comment s'attaquer a du code java ou ya plus de 50 
classes ? par kel bout ?
<B> le troisième
 -+- #ens-mim en stage -+-



reply via email to

[Prev in Thread] Current Thread [Next in Thread]