projects
/
unionfs-2.6.39.y.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2b94a73
)
Unionfs: properly indent static struct
author
Erez Zadok
<ezk@cs.sunysb.edu>
Sat, 29 Sep 2007 05:36:57 +0000
(
01:36
-0400)
committer
Erez Zadok
<ezk@cs.sunysb.edu>
Fri, 29 Apr 2011 02:24:57 +0000
(22:24 -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 615617a07ee7ba62d6cdbecd4e1d4c3d72729929..5c7f6722b739a26b65f475b1884ed2f922f9912e 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)) {