]> git.sesse.net Git - vlc/commitdiff
Netsync: fix return type
authorJean-Baptiste Kempf <jb@videolan.org>
Fri, 28 Oct 2011 13:13:51 +0000 (15:13 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Sun, 30 Oct 2011 23:42:18 +0000 (00:42 +0100)
modules/control/netsync.c

index 6db3c344d0109231ba9cdceadd59f6547c10bfc1..517c12adea25eae4f9d7cd5829d810271ab5be05 100644 (file)
@@ -209,6 +209,7 @@ static void *Master(void *handle)
                  : "non-IPv4", /*date*/ 0);
 #endif
     }
+    return NULL;
 }
 
 static void *Slave(void *handle)
@@ -265,6 +266,7 @@ static void *Slave(void *handle)
     wait:
         msleep(INTF_IDLE_SLEEP);
     }
+    return NULL;
 }
 
 static int InputEvent(vlc_object_t *object, char const *cmd,