diff options
| -rw-r--r-- | include/linux/file.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/file.h b/include/linux/file.h index b1e12970f61..e85baebf627 100644 --- a/include/linux/file.h +++ b/include/linux/file.h @@ -23,7 +23,7 @@ extern struct file *alloc_file(struct path *, fmode_t mode,  static inline void fput_light(struct file *file, int fput_needed)  { -	if (unlikely(fput_needed)) +	if (fput_needed)  		fput(file);  }  |