]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
linuxdvb: satconf - fix wrong udelay (milli/micro bug)
authorJaroslav Kysela <perex@perex.cz>
Fri, 23 Oct 2015 19:04:49 +0000 (21:04 +0200)
committerJaroslav Kysela <perex@perex.cz>
Fri, 23 Oct 2015 19:05:01 +0000 (21:05 +0200)
src/input/mpegts/linuxdvb/linuxdvb_satconf.c

index 1a6c1c8179084cb3039c8389135fda1c830e668b..668c8e460b92b23a43e23357fc05170be0a55c65 100644 (file)
@@ -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;
 }