From: Paul Eggert Date: Thu, 6 Jun 2019 22:45:14 +0000 (-0700) Subject: copy-file: fix typo X-Git-Tag: v1.0~4930 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=30b6215942ffadd705f7641c0725e425057b73a5;p=gnulib.git copy-file: fix typo * lib/copy-file.c (qcopy_file_preserving): Remove unused label. --- diff --git a/ChangeLog b/ChangeLog index 5e51f2dbdd..cbb95d2f59 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2019-06-06 Paul Eggert + 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 diff --git a/lib/copy-file.c b/lib/copy-file.c index 092a040d7e..91c920c330 100644 --- a/lib/copy-file.c +++ b/lib/copy-file.c @@ -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; }