Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
quickfix for previous patches
  • Loading branch information
perexg committed Mar 10, 2016
1 parent aa4e7f0 commit c7e9c45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/dvr/dvr_inotify.c
Expand Up @@ -327,7 +327,7 @@ void* _dvr_inotify_thread ( void *p )
int fromfd;
int cookie;

while (_inot_fd >= 0) {
while (atomic_get(&tvheadend_running)) {

/* Read events */
fromfd = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/fsmonitor.c
Expand Up @@ -53,7 +53,7 @@ fsmonitor_thread ( void* p )
fsmonitor_link_t *fml;
fsmonitor_t *fsm;

while (fsmonitor_fd >= 0) {
while (atomic_get(&tvheadend_running)) {

/* Wait for event */
c = read(fsmonitor_fd, buf, sizeof(buf));
Expand Down

0 comments on commit c7e9c45

Please sign in to comment.