]> Git Repo - linux.git/commitdiff
[GFS2] Fix indent in recovery.c
authorSteven Whitehouse <[email protected]>
Tue, 5 Dec 2006 18:34:17 +0000 (13:34 -0500)
committerSteven Whitehouse <[email protected]>
Tue, 5 Dec 2006 18:34:17 +0000 (13:34 -0500)
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 <[email protected]>
Cc: Jan Engelhardt <[email protected]>
Cc: Andrew Morton <[email protected]>
fs/gfs2/recovery.c

index 4acf238e1db60de6488f364dbaf5eed46c04de2c..d0c806b85c864387cffec4a7a82a9dd8d5deb329 100644 (file)
@@ -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;
 
This page took 0.05321 seconds and 4 git commands to generate.