diff options
author | Nikanth Karthikesan <knikanth@suse.de> | 2009-04-01 05:10:51 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2009-06-12 12:01:44 -0400 |
commit | ff677f8d10a7b7dea6fbfc48d5ceeb3018cabb23 (patch) | |
tree | 38c1a36a4f6394b61289f402abdf8b33899a0e34 /fs | |
parent | 88164ff4fca75051315d73729ea5a014e8986234 (diff) |
trivial: fix comment typo in fs/compat.c
Fix a typo in fs/compat.c
Signed-off-by: Nikanth Karthikesan <knikanth@suse.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/compat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/compat.c b/fs/compat.c index 6aefb776dfeb..cdd51a3a7c53 100644 --- a/fs/compat.c +++ b/fs/compat.c | |||
@@ -471,7 +471,7 @@ asmlinkage long compat_sys_fcntl64(unsigned int fd, unsigned int cmd, | |||
471 | ret = sys_fcntl(fd, cmd, (unsigned long)&f); | 471 | ret = sys_fcntl(fd, cmd, (unsigned long)&f); |
472 | set_fs(old_fs); | 472 | set_fs(old_fs); |
473 | if (cmd == F_GETLK && ret == 0) { | 473 | if (cmd == F_GETLK && ret == 0) { |
474 | /* GETLK was successfule and we need to return the data... | 474 | /* GETLK was successful and we need to return the data... |
475 | * but it needs to fit in the compat structure. | 475 | * but it needs to fit in the compat structure. |
476 | * l_start shouldn't be too big, unless the original | 476 | * l_start shouldn't be too big, unless the original |
477 | * start + end is greater than COMPAT_OFF_T_MAX, in which | 477 | * start + end is greater than COMPAT_OFF_T_MAX, in which |