Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 93056
b: refs/heads/master
c: 27e6b8e
h: refs/heads/master
v: v3
  • Loading branch information
David Woodhouse committed Apr 23, 2008
1 parent 5b1daf4 commit 3955ac5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 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: 85a62db6245a82f07a31b387915ee2180b9ea11a
refs/heads/master: 27e6b8e388fffb332476ddab00bbe05cd5da5f32
5 changes: 4 additions & 1 deletion trunk/fs/jffs2/debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,10 @@ __jffs2_dbg_dump_node_refs_nolock(struct jffs2_sb_info *c,

printk(JFFS2_DBG);
for (ref = jeb->first_node; ; ref = ref_next(ref)) {
printk("%#08x(%#x)", ref_offset(ref), ref->__totlen);
printk("%#08x", ref_offset(ref));
#ifdef TEST_TOTLEN
printk("(%x)", ref->__totlen);
#endif
if (ref_next(ref))
printk("->");
else
Expand Down

0 comments on commit 3955ac5

Please sign in to comment.