Skip to content

Commit

Permalink
fix do_sys_open() prototype
Browse files Browse the repository at this point in the history
Fix an argument name in do_sys_open()'s prototype.

Signed-off-by: Jason Uhlenkott <juhlenko@akamai.com>
Signed-off-by: Adrian Bunk <bunk@kernel.org>
  • Loading branch information
Jason Uhlenkott authored and Adrian Bunk committed Oct 20, 2007
1 parent 3932bf6 commit 8e8a140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/linux/fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -1536,7 +1536,7 @@ static inline int break_lease(struct inode *inode, unsigned int mode)

extern int do_truncate(struct dentry *, loff_t start, unsigned int time_attrs,
struct file *filp);
extern long do_sys_open(int fdf, const char __user *filename, int flags,
extern long do_sys_open(int dfd, const char __user *filename, int flags,
int mode);
extern struct file *filp_open(const char *, int, int);
extern struct file * dentry_open(struct dentry *, struct vfsmount *, int);
Expand Down

0 comments on commit 8e8a140

Please sign in to comment.