aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/reiserfs/stree.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/reiserfs/stree.c b/fs/reiserfs/stree.c
index b14706a05d52..615cd9ab7940 100644
--- a/fs/reiserfs/stree.c
+++ b/fs/reiserfs/stree.c
@@ -228,10 +228,10 @@ const struct reiserfs_key MIN_KEY = { 0, 0, {{0, 0},} };
228 228
229/* Maximal possible key. It is never in the tree. */ 229/* Maximal possible key. It is never in the tree. */
230static const struct reiserfs_key MAX_KEY = { 230static const struct reiserfs_key MAX_KEY = {
231 __constant_cpu_to_le32(0xffffffff), 231 cpu_to_le32(0xffffffff),
232 __constant_cpu_to_le32(0xffffffff), 232 cpu_to_le32(0xffffffff),
233 {{__constant_cpu_to_le32(0xffffffff), 233 {{cpu_to_le32(0xffffffff),
234 __constant_cpu_to_le32(0xffffffff)},} 234 cpu_to_le32(0xffffffff)},}
235}; 235};
236 236
237/* Get delimiting key of the buffer by looking for it in the buffers in the path, starting from the bottom 237/* Get delimiting key of the buffer by looking for it in the buffers in the path, starting from the bottom