projects
/
unionfs-odf.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e6b9209
)
Unionfs: properly indent static struct
author
Erez Zadok
<ezk@cs.sunysb.edu>
Fri, 16 Nov 2007 18:45:49 +0000
(13:45 -0500)
committer
Rachita Kothiyal
<rachita@dewey.fsl.cs.sunysb.edu>
Thu, 1 May 2008 23:03:10 +0000
(19:03 -0400)
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
fs/unionfs/main.c
patch
|
blob
|
history
diff --git
a/fs/unionfs/main.c
b/fs/unionfs/main.c
index 17944d6adfdee07045e5ae66772b3cd20737fcfd..0c309c65ce765dcec76fd4b9f386fc6139c76513 100644
(file)
--- a/
fs/unionfs/main.c
+++ b/
fs/unionfs/main.c
@@
-591,7
+591,10
@@
static struct dentry *unionfs_d_alloc_root(struct super_block *sb)
struct dentry *ret = NULL;
if (sb) {
- static const struct qstr name = {.name = "/",.len = 1 };
+ static const struct qstr name = {
+ .name = "/",
+ .len = 1
+ };
ret = d_alloc(NULL, &name);
if (likely(ret)) {