]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid compiler warning on MS-Windows due to clone_file
authorEli Zaretskii <eliz@gnu.org>
Wed, 14 Sep 2016 17:46:59 +0000 (20:46 +0300)
committerEli Zaretskii <eliz@gnu.org>
Wed, 14 Sep 2016 17:46:59 +0000 (20:46 +0300)
* src/fileio.c (clone_file): Condition on !WINDOWSNT, since the
call to it is not compiled in that build, and having it defined
causes compiler warnings.

src/fileio.c

index b4316b3da98c00bb0a8a611e0533eb31f044d168..5fe04114a4a11c7a699edc9dbe78aec412bf48d3 100644 (file)
@@ -1834,6 +1834,7 @@ barf_or_query_if_file_exists (Lisp_Object absname, bool known_to_exist,
     }
 }
 
+#ifndef WINDOWSNT
 /* Copy data to DEST from SOURCE if possible.  Return true if OK.  */
 static bool
 clone_file (int dest, int source)
@@ -1843,6 +1844,7 @@ clone_file (int dest, int source)
 #endif
   return false;
 }
+#endif
 
 DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 6,
        "fCopy file: \nGCopy %s to file: \np\nP",