commit a658ca750410e9f0d5c0a0a81f7ec044b766d283
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 a72f40f..e10f21d 100644
--- a/fs/unionfs/odf.c
+++ b/fs/unionfs/odf.c
@@ -267,7 +267,7 @@ void odf_put_super(struct odf_sb_info *osi)
  * 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 c886d75..62e9859 100644
--- a/fs/unionfs/odf.h
+++ b/fs/unionfs/odf.h
@@ -37,7 +37,7 @@
 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 63a6777..e1f1a3f 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 odf_sb_info 
*odf, int branch)
 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