]> Savannah Git Hosting - gnulib.git/commitdiff
copy-file: fix typo
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 6 Jun 2019 22:45:14 +0000 (15:45 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 6 Jun 2019 22:46:21 +0000 (15:46 -0700)
* lib/copy-file.c (qcopy_file_preserving): Remove unused label.

ChangeLog
lib/copy-file.c

index 5e51f2dbdd8e33f2588848f5b9a69f1fffea8baa..cbb95d2f5989df7993b34ce4d0e3bb318971018d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2019-06-06  Paul Eggert  <eggert@cs.ucla.edu>
 
+       copy-file: fix typo
+       * lib/copy-file.c (qcopy_file_preserving): Remove unused label.
+
        copy-file-range: simplify into a stub
        Based on a comment by Florian Weimer in:
        https://lists.gnu.org/r/bug-gnulib/2019-06/msg00007.html
index 092a040d7e8bb350b2c73b0ef62473e2923d1951..91c920c330816d96f0fad3cb17e49d49aca49364 100644 (file)
@@ -175,7 +175,6 @@ qcopy_file_preserving (const char *src_filename, const char *dest_filename)
   close (dest_fd);
  error_src:
   close (src_fd);
- error:
   return err;
 }