diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-29 00:58:41 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-29 08:05:59 -0700 |
commit | e5949050f2610fa526b154e0d8379218e54f49d1 (patch) | |
tree | d48233abec7705931cde36bd35c924d643e16921 /fs/adfs/dir_f.c | |
parent | 95b570c9cef3b12356454c7112571b7e406b4b51 (diff) | |
download | linux-e5949050f2610fa526b154e0d8379218e54f49d1.tar.gz linux-e5949050f2610fa526b154e0d8379218e54f49d1.tar.bz2 linux-e5949050f2610fa526b154e0d8379218e54f49d1.zip |
adfs: work around bogus sparse warning
fs/adfs/dir_f.c:126:4: warning: do-while statement is not a compound statement
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Cc: Russell King <rmk@arm.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/adfs/dir_f.c')
-rw-r--r-- | fs/adfs/dir_f.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/adfs/dir_f.c b/fs/adfs/dir_f.c index b9b2b27b68c3..ea7df2146921 100644 --- a/fs/adfs/dir_f.c +++ b/fs/adfs/dir_f.c @@ -122,9 +122,9 @@ adfs_dir_checkbyte(const struct adfs_dir *dir) ptr.ptr8 = bufoff(bh, i); end.ptr8 = ptr.ptr8 + last - i; - do + do { dircheck = *ptr.ptr8++ ^ ror13(dircheck); - while (ptr.ptr8 < end.ptr8); + } while (ptr.ptr8 < end.ptr8); } /* |