diff src/fileio.c @ 595:114b502d0822

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Sat, 21 Mar 1992 06:26:29 +0000
parents e65af468dcc2
children eca8812e61cd
line wrap: on
line diff
--- a/src/fileio.c	Sat Mar 21 05:58:05 1992 +0000
+++ b/src/fileio.c	Sat Mar 21 06:26:29 1992 +0000
@@ -1405,7 +1405,7 @@
   ofd = creat (XSTRING (newname)->data, 0666);
 #endif /* VMS */
   if (ofd < 0)
-    report_file_error ("Opening output file", Fcons (newname, Qnil));
+      report_file_error ("Opening output file", Fcons (newname, Qnil));
 
   record_unwind_protect (close_file_unwind, make_number (ofd));
 
@@ -1413,7 +1413,7 @@
   QUIT;
   while ((n = read (ifd, buf, sizeof buf)) > 0)
     if (write (ofd, buf, n) != n)
-      report_file_error ("I/O error", Fcons (newname, Qnil));
+	report_file_error ("I/O error", Fcons (newname, Qnil));
   immediate_quit = 0;
 
   if (fstat (ifd, &st) >= 0)