diff options
author | David Woodhouse <dwmw2@infradead.org> | 2007-07-10 13:01:22 +0400 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2007-07-10 13:01:22 +0400 |
commit | ef53cb02ffee8ceb44ea75f778f77eace6b9c89a (patch) | |
tree | 3e41f74e33ca8b995f5aeb914074ac980b10e56a /fs/jffs2/gc.c | |
parent | 16adce7b6f4dab015d0b93274b41f8aae6fe07a5 (diff) | |
download | linux-ef53cb02ffee8ceb44ea75f778f77eace6b9c89a.tar.xz |
[JFFS2] Whitespace cleanups.
Convert many spaces to tabs; one or two other minor cosmetic fixes.
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'fs/jffs2/gc.c')
-rw-r--r-- | fs/jffs2/gc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/jffs2/gc.c b/fs/jffs2/gc.c index 2d99e06ab223..eded819df235 100644 --- a/fs/jffs2/gc.c +++ b/fs/jffs2/gc.c @@ -556,7 +556,7 @@ static int jffs2_garbage_collect_pristine(struct jffs2_sb_info *c, node = kmalloc(rawlen, GFP_KERNEL); if (!node) - return -ENOMEM; + return -ENOMEM; ret = jffs2_flash_read(c, ref_offset(raw), rawlen, &retlen, (char *)node); if (!ret && retlen != rawlen) @@ -624,7 +624,7 @@ static int jffs2_garbage_collect_pristine(struct jffs2_sb_info *c, if (ret || (retlen != rawlen)) { printk(KERN_NOTICE "Write of %d bytes at 0x%08x failed. returned %d, retlen %zd\n", - rawlen, phys_ofs, ret, retlen); + rawlen, phys_ofs, ret, retlen); if (retlen) { jffs2_add_physical_node_ref(c, phys_ofs | REF_OBSOLETE, rawlen, NULL); } else { |