| | Date | Wed, 8 Apr 2009 14:02:48 +0200 | | Subject | Re: [PATCH 51/56] sysv: Remove void casts | | From | Bert Wesarg <> |
| |
On Wed, Apr 8, 2009 at 13:22, Jack Stone <jwjstone@fastmail.fm> wrote: > Remove uneeded void casts > > Signed-Off-By: Jack Stone <jwjstone@fastmail.fm> > --- > fs/sysv/dir.c | 14 +++++++------- > 1 files changed, 7 insertions(+), 7 deletions(-) > > diff --git a/fs/sysv/dir.c b/fs/sysv/dir.c > index 56f6552..8a9f5a7 100644 > --- a/fs/sysv/dir.c > +++ b/fs/sysv/dir.c > @@ -367,7 +367,7 @@ struct sysv_dir_entry * sysv_dotdot (struct inode *dir, struct page **p) > struct sysv_dir_entry *de = NULL; > > if (!IS_ERR(page)) { > - de = (struct sysv_dir_entry*) page_address(page) + 1; > + de = page_address(page) + 1; This is probably wrong, because (void* + 1) != (struct sysv_dir_entry* + 1).
> *p = page; > } > return de; > --
Bert -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|