Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 4804
b: refs/heads/master
c: 8e0a218
h: refs/heads/master
v: v3
  • Loading branch information
Paolo 'Blaisorblade' Giarrusso authored and Linus Torvalds committed Jul 14, 2005
1 parent e3f4fb8 commit 2a00025
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 1c30385ae479ec4774bdc1048726aeb15cde0d21
refs/heads/master: 8e0a21812427313f8ee8521688e81bfcc6f207a2
6 changes: 3 additions & 3 deletions trunk/fs/hppfs/hppfs_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ static ssize_t read_proc(struct file *file, char *buf, ssize_t count,
set_fs(USER_DS);

if(ppos) *ppos = file->f_pos;
return(n);
return n;
}

static ssize_t hppfs_read_file(int fd, char *buf, ssize_t count)
Expand All @@ -254,7 +254,7 @@ static ssize_t hppfs_read_file(int fd, char *buf, ssize_t count)
err = os_read_file(fd, new_buf, cur);
if(err < 0){
printk("hppfs_read : read failed, errno = %d\n",
count);
err);
n = err;
goto out_free;
}
Expand All @@ -271,7 +271,7 @@ static ssize_t hppfs_read_file(int fd, char *buf, ssize_t count)
out_free:
kfree(new_buf);
out:
return(n);
return n;
}

static ssize_t hppfs_read(struct file *file, char *buf, size_t count,
Expand Down

0 comments on commit 2a00025

Please sign in to comment.