Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
linuxdvb: satconf - fix wrong udelay (milli/micro bug)
  • Loading branch information
perexg committed Oct 23, 2015
1 parent 03e792a commit 061a04d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/linuxdvb/linuxdvb_satconf.c
Expand Up @@ -713,7 +713,7 @@ linuxdvb_satconf_start ( linuxdvb_satconf_t *ls, int delay, int vol )
ls->ls_last_tone_off = 1;
}
if (delay)
usleep(delay);
usleep(delay*1000);
return 0;
}

Expand Down

0 comments on commit 061a04d

Please sign in to comment.