Skip to content

Commit

Permalink
fs/libfs.c: >80 columns line break fix
Browse files Browse the repository at this point in the history
Signed-off-by: Ronni Nielsen <theronni@gmail.com>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
  • Loading branch information
Ronni Nielsen authored and Adrian Bunk committed May 9, 2007
1 parent de372ec commit 0f8952c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion fs/libfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,10 @@ int dcache_readdir(struct file * filp, void * dirent, filldir_t filldir)
continue;

spin_unlock(&dcache_lock);
if (filldir(dirent, next->d_name.name, next->d_name.len, filp->f_pos, next->d_inode->i_ino, dt_type(next->d_inode)) < 0)
if (filldir(dirent, next->d_name.name,
next->d_name.len, filp->f_pos,
next->d_inode->i_ino,
dt_type(next->d_inode)) < 0)
return 0;
spin_lock(&dcache_lock);
/* next is still alive */
Expand Down

0 comments on commit 0f8952c

Please sign in to comment.