diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2006-12-05 19:34:17 +0100 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-12-05 19:34:17 +0100 |
commit | 887bc5d00c02b32763845247024e8db5243ef857 (patch) | |
tree | e52d8210087866b411ccafce1ec4e7a3510778b6 | |
parent | [GFS2] Don't flush everything on fdatasync (diff) | |
download | linux-887bc5d00c02b32763845247024e8db5243ef857.tar.xz linux-887bc5d00c02b32763845247024e8db5243ef857.zip |
[GFS2] Fix indent in recovery.c
As per comments from Andrew Morton and Jan Engelhardt, this fixes the
indent and removes the "static" from a variable declaration since its
not needed in this case (now allocated on the stack of the function
in question).
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Cc: Jan Engelhardt <jengelh@linux01.gwdg.de>
Cc: Andrew Morton <akpm@osdl.org>
-rw-r--r-- | fs/gfs2/recovery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/recovery.c b/fs/gfs2/recovery.c index 4acf238e1db6..d0c806b85c86 100644 --- a/fs/gfs2/recovery.c +++ b/fs/gfs2/recovery.c @@ -136,7 +136,7 @@ static int get_log_header(struct gfs2_jdesc *jd, unsigned int blk, { struct buffer_head *bh; struct gfs2_log_header_host lh; -static const u32 nothing = 0; + const u32 nothing = 0; u32 hash; int error; |