]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Break long lines.
authorJim Meyering <jim@meyering.net>
Wed, 15 Nov 1995 15:45:28 +0000 (15:45 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 15 Nov 1995 15:45:28 +0000 (15:45 +0000)
src/cp.c
src/du.c
src/ln.c
src/mv.c

index 5354e6501680939b988c9f617f16e46181d1e3ea..145fb02f60affcb3c091b052a4b058517c70ab1e 100644 (file)
--- a/src/cp.c
+++ b/src/cp.c
@@ -468,7 +468,8 @@ do_copy (int argc, char **argv)
    Return 0 if successful, 1 if an error occurs. */
 
 static int
-copy (char *src_path, char *dst_path, int new_dst, dev_t device, struct dir_list *ancestors)
+copy (char *src_path, char *dst_path, int new_dst, dev_t device,
+      struct dir_list *ancestors)
 {
   struct stat src_sb;
   struct stat dst_sb;
@@ -856,7 +857,9 @@ un_backup:
    permissions when done, otherwise 1. */
 
 static int
-make_path_private (char *const_dirpath, int src_offset, int mode, char *verbose_fmt_string, struct dir_attr **attr_list, int *new_dst)
+make_path_private (char *const_dirpath, int src_offset, int mode,
+                  char *verbose_fmt_string, struct dir_attr **attr_list,
+                  int *new_dst)
 {
   struct stat stats;
   char *dirpath;               /* A copy of CONST_DIRPATH we can change. */
@@ -1040,7 +1043,8 @@ re_protect (char *const_dst_path, int src_offset, struct dir_attr *attr_list)
    Return 0 if successful, -1 if an error occurs. */
 
 static int
-copy_dir (char *src_path_in, char *dst_path_in, int new_dst, struct stat *src_sb, struct dir_list *ancestors)
+copy_dir (char *src_path_in, char *dst_path_in, int new_dst,
+         struct stat *src_sb, struct dir_list *ancestors)
 {
   char *name_space;
   char *namep;
index c3a47db1d74c0366ccf865fcb6ef6fb2178f4788..41e8b537b3821f734f61b772ca5e8d9a0dfd5544 100644 (file)
--- a/src/du.c
+++ b/src/du.c
@@ -482,7 +482,8 @@ count_entry (char *ent, int top, dev_t last_dev)
          free_cwd (&cwd);
        }
       else if (chdir ("..") < 0)
-        error (1, errno, "cannot change to `..' from directory %s", path->text);
+        error (1, errno,
+              "cannot change to `..' from directory %s", path->text);
 
       str_trunc (path, pathlen - 1); /* Remove the "/" we added.  */
       if (!opt_summarize_only || top)
index ac43d5315acba996f0199d80e470ccb8a957ab88..d80a9c0da3c2a5f07d1dcd78b4ba5335e04ce15b 100644 (file)
--- a/src/ln.c
+++ b/src/ln.c
@@ -314,7 +314,8 @@ main (int argc, char **argv)
     = hard_dir_link = 0;
   errors = 0;
 
-  while ((c = getopt_long (argc, argv, "bdfinsvFS:V:", long_options, (int *) 0))
+  while ((c = getopt_long (argc, argv,
+                          "bdfinsvFS:V:", long_options, (int *) 0))
         != EOF)
     {
       switch (c)
index ca7cbae6a6b4cad66768deaa25045480a0c010ca..2cea495c9deb6aff42f160e2b6209ece6bb4a108 100644 (file)
--- a/src/mv.c
+++ b/src/mv.c
@@ -473,7 +473,8 @@ main (int argc, char **argv)
   stdin_tty = isatty (STDIN_FILENO);
 
   if (argc > optind + 2 && !isdir (argv[argc - 1]))
-    error (1, 0, "when moving multiple files, last argument must be a directory");
+    error (1, 0,
+          "when moving multiple files, last argument must be a directory");
 
   /* Move each arg but the last onto the last. */
   for (; optind < argc - 1; ++optind)