From: Steven Whitehouse Date: Tue, 5 Dec 2006 18:34:17 +0000 (-0500) Subject: [GFS2] Fix indent in recovery.c X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=887bc5d00c02b32763845247024e8db5243ef857;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git [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 Cc: Jan Engelhardt Cc: Andrew Morton --- 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;