[BACK]Return to indent.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / indent

Diff for /src/usr.bin/indent/indent.c between version 1.24 and 1.25

version 1.24, 2014/05/20 01:25:23 version 1.25, 2014/07/20 01:38:40
Line 1200 
Line 1200 
     /* now the original input file will be the output */      /* now the original input file will be the output */
     output = fopen(in_name, "w");      output = fopen(in_name, "w");
     if (output == NULL) {      if (output == NULL) {
           int saved_errno = errno;
         unlink(bakfile);          unlink(bakfile);
         err(1, "%s", in_name);          errc(1, saved_errno, "%s", in_name);
     }      }
 }  }

Legend:
Removed from v.1.24  
changed lines
  Added in v.1.25