Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 38827
b: refs/heads/master
c: 1691042
h: refs/heads/master
i:
  38825: b32d749
  38823: 14e287d
v: v3
  • Loading branch information
Steven Whitehouse committed Sep 5, 2006
1 parent 95ae752 commit 981ade0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ea67eedb211d3418fa62fe3477e0d19b2888225e
refs/heads/master: 16910427e1eb2a8069708ee24406d2d465381ebd
4 changes: 2 additions & 2 deletions trunk/fs/gfs2/rgrp.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "ops_file.h"
#include "util.h"

#define BFITNOENT 0xFFFFFFFF
#define BFITNOENT (u32)~0

/*
* These routines are used by the resource group routines (rgrp.c)
Expand Down Expand Up @@ -257,7 +257,7 @@ static inline int rgrp_contains_block(struct gfs2_rindex *ri, u64 block)
{
u64 first = ri->ri_data0;
u64 last = first + ri->ri_data;
return !!(first <= block && block < last);
return first <= block && block < last;
}

/**
Expand Down

0 comments on commit 981ade0

Please sign in to comment.