coding_style: reformatted lines over 80 chars
authorYiannis Pericleous <yiannos@loki.fsl.cs.sunysb.edu>
Tue, 29 May 2007 04:37:35 +0000 (00:37 -0400)
committerRachita Kothiyal <rachita@dewey.fsl.cs.sunysb.edu>
Thu, 1 May 2008 23:02:40 +0000 (19:02 -0400)
fs/unionfs/odf.c

index 3ed0284694959aa602c6fd109974e8f72a2e5aba..26fe71e506a74b945d938e4b7a10daf72ba63aa2 100644 (file)
@@ -1642,7 +1642,8 @@ int odf_update_uuids(struct odf_sb_info *odf, struct path *old_paths, int old_br
 
                /* if yes, then give it the old uuid */
                if (i != old_branches) {
-                       memcpy(new_uuids + bindex * UUID_LEN, old_uuids + i * UUID_LEN, UUID_LEN);
+                       memcpy(new_uuids + bindex * UUID_LEN,
+                              old_uuids + i * UUID_LEN, UUID_LEN);
                        continue;
                }
 
@@ -1653,7 +1654,8 @@ int odf_update_uuids(struct odf_sb_info *odf, struct path *old_paths, int old_br
                }
 
                if (i != bindex)
-                       memcpy(new_uuids + bindex * UUID_LEN, new_uuids + i * UUID_LEN, UUID_LEN);
+                       memcpy(new_uuids + bindex * UUID_LEN,
+                              new_uuids + i * UUID_LEN, UUID_LEN);
 
                else    /* if this is a new fs in the union give it a new uuid */
                        generate_random_uuid(new_uuids + bindex * UUID_LEN);