commit 06fa78d3fb030d8f0659e03633ecb8ed64e9b3f0
Author: Erez_Zadok <[EMAIL PROTECTED]>
Date:   Thu May 31 15:23:29 2007 -0400

    cleanup: change "char* foo" declarations to "char *foo" consistently.
    
    Signed-off-by: Erez Zadok <[EMAIL PROTECTED]>

diff --git a/fs/unionfs/odf.c b/fs/unionfs/odf.c
index 
a72f40f272d0c426c1d4594d50d3b48f574167d4..e10f21ddf7347df6645de2977c5c6f15fc6d5c35
 100644
--- a/fs/unionfs/odf.c
+++ b/fs/unionfs/odf.c
@@ -267,7 +267,7 @@ void odf_put_super(struct odf_sb_info *o
  * This is to be used for accessing whatever is in the root of the
  * odf, ie /odf/ic, /odf/ns, etc
  */
-struct dentry* odf_getdir(struct dentry *d_odf, const char *name, int len)
+struct dentry *odf_getdir(struct dentry *d_odf, const char *name, int len)
 {
        struct dentry *dentry;
 
@@ -1673,7 +1673,7 @@ out:
  *     then for each branch:
  *             branch id, ablosute path len, absolute path, perms, uuids
  */
-int odf_write_sb_data(struct odf_sb_info* osi, struct unionfs_data *data, 
struct path *lower_paths, int branches)
+int odf_write_sb_data(struct odf_sb_info *osi, struct unionfs_data *data, 
struct path *lower_paths, int branches)
 {
        struct dentry *d, *d_content;
        struct vfsmount *m, *odf_mnt;
diff --git a/fs/unionfs/odf.h b/fs/unionfs/odf.h
index 
c886d75eb8fcf6bb9b7cbecf0ceb2f83d7266592..62e985994caa977289130b0809f677bc986b0c04
 100644
--- a/fs/unionfs/odf.h
+++ b/fs/unionfs/odf.h
@@ -37,7 +37,7 @@ #define ODF_CONTENT_LEN (sizeof(ODF_CONT
 extern int odf_read_super(struct super_block *sb, char *data);
 extern void odf_put_super(struct odf_sb_info *osi);
 extern char *odf_read_sb_data(struct odf_sb_info *odf_sb, int **bid);
-extern int odf_write_sb_data(struct odf_sb_info* osi, struct unionfs_data 
*data,
+extern int odf_write_sb_data(struct odf_sb_info *osi, struct unionfs_data 
*data,
                      struct path *lower_paths, int branches);
 extern int odf_is_new(struct odf_sb_info *osi);
 extern int odf_update_uuids(struct odf_sb_info *odf, struct path *old_paths, 
int old_branches,
diff --git a/fs/unionfs/odf_internals.h b/fs/unionfs/odf_internals.h
index 
63a677721bd5a604669f93cbd73075f96b453d61..e1f1a3f76ef91b64b12c043fab03462a05c0141d
 100644
--- a/fs/unionfs/odf_internals.h
+++ b/fs/unionfs/odf_internals.h
@@ -44,7 +44,7 @@ static inline char *odf_get_branch_uuid(
 struct dentry *__odf_lookup(struct dentry *parent, struct dentry *target,
                            const char *name, int len, int flags,
                            struct dentry *link);
-struct dentry* odf_getdir(struct dentry *d_odf, const char *name, int len);
+struct dentry *odf_getdir(struct dentry *d_odf, const char *name, int len);
 
 struct dentry *odf_ic_dentry(struct odf_sb_info *osi, u64 ino,
                             char *name, int namelen);
_______________________________________________
unionfs-cvs mailing list: http://unionfs.filesystems.org/
[email protected]
http://www.fsl.cs.sunysb.edu/mailman/listinfo/unionfs-cvs

Reply via email to