diff options
author | Glauber de Oliveira Costa <glommer@br.ibm.com> | 2006-01-08 01:03:22 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-08 20:13:56 -0800 |
commit | 9f40668d7d14d4d16cedc2104bfb63a43584dacf (patch) | |
tree | 1afa0f60acfcfb89e460feca6ea4d5686b192915 /fs/ext3/namei.c | |
parent | 25ab7cd84eebdc1869d236029ada3a7b403de8ba (diff) | |
download | op-kernel-dev-9f40668d7d14d4d16cedc2104bfb63a43584dacf.zip op-kernel-dev-9f40668d7d14d4d16cedc2104bfb63a43584dacf.tar.gz |
[PATCH] ext3: remove trailing newlines from ext3_warning() calls
Remove the trailing newlines in calls to ext3_warning(). This function
already adds a trailing newline to the end of messages.
Signed-off-by: Glauber de Oliveira Costa <glommer@br.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/ext3/namei.c')
-rw-r--r-- | fs/ext3/namei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext3/namei.c b/fs/ext3/namei.c index b3c690a..af193a3 100644 --- a/fs/ext3/namei.c +++ b/fs/ext3/namei.c @@ -1476,7 +1476,7 @@ static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry, if (levels && (dx_get_count(frames->entries) == dx_get_limit(frames->entries))) { ext3_warning(sb, __FUNCTION__, - "Directory index full!\n"); + "Directory index full!"); err = -ENOSPC; goto cleanup; } |