diff options
author | Jan Kara <jack@suse.cz> | 2007-12-17 16:20:26 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-12-17 19:28:17 -0800 |
commit | 087ee8d5bec1aa6d0a1dfe3067c7298375462ceb (patch) | |
tree | 044c7aa8a97b27e33525181d8eed54990d6af815 /fs | |
parent | d5dbac87b4343d98ae509fb787efb77f8ddc484b (diff) | |
download | op-kernel-dev-087ee8d5bec1aa6d0a1dfe3067c7298375462ceb.zip op-kernel-dev-087ee8d5bec1aa6d0a1dfe3067c7298375462ceb.tar.gz |
Fix compilation warning in dquot.c
Fix compilation warning about discarded const.
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/dquot.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -965,7 +965,7 @@ err_out: } #endif -static inline void flush_warnings(struct dquot **dquots, char *warntype) +static inline void flush_warnings(struct dquot * const *dquots, char *warntype) { int i; @@ -1216,7 +1216,7 @@ warn_put_all: for (cnt = 0; cnt < MAXQUOTAS; cnt++) if (inode->i_dquot[cnt]) mark_dquot_dirty(inode->i_dquot[cnt]); - flush_warnings((struct dquot **)inode->i_dquot, warntype); + flush_warnings(inode->i_dquot, warntype); up_read(&sb_dqopt(inode->i_sb)->dqptr_sem); return ret; } |