Skip to content

Commit

Permalink
[fix] inode: add missing return at end of function
Browse files Browse the repository at this point in the history
  • Loading branch information
nikp123 committed Aug 27, 2020
1 parent ae91c08 commit c676b78
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/misc/inode_watcher.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ void *watchFileProcess(void *name) {
inotify_rm_watch(fd, wd);
close(fd);
alive = 0;
return NULL;
}
#endif

Expand Down Expand Up @@ -101,6 +102,7 @@ void *watchFileProcess(void *name) {
}
free(name);
alive = 0;
return NULL;
}
#endif

Expand Down

0 comments on commit c676b78

Please sign in to comment.