Skip to content

Commit

Permalink
[GFS2] Fix indent in recovery.c
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Steven Whitehouse committed Dec 5, 2006
1 parent 33c3de3 commit 887bc5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/gfs2/recovery.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 887bc5d

Please sign in to comment.