projects
/
unionfs-2.6.9.y.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
341a1c1
)
Unionfs: properly indent static struct
author
Erez Zadok
<ezk@cs.sunysb.edu>
Tue, 27 Nov 2007 00:54:30 +0000
(19:54 -0500)
committer
Erez Zadok
<ezk@cs.sunysb.edu>
Tue, 27 Nov 2007 00:54:30 +0000
(19:54 -0500)
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 4995ee5b14b04bd3ec22491362e528611149188a..1011486b7685dc8d5ac83761ab05be5473316d53 100644
(file)
--- a/
fs/unionfs/main.c
+++ b/
fs/unionfs/main.c
@@
-564,7
+564,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)) {