Advertisement
swaggboi

filesetup.c

Mar 4th, 2020
615
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.30 KB | None | 0 0
  1. if (unlink_file || new_layout) {
  2.         int ret;
  3.  
  4.         dprint(FD_FILE, "layout unlink %s\n", f->file_name);
  5.  
  6.         ret = td_io_unlink_file(td, f);
  7.         if (ret != 0 && ret != ENOENT) {
  8.                 td_verror(td, errno, "unlink"); /* line 150 */
  9.                 return 1;
  10.         }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement