[vlc-commits] Netsync: fix return type

Jean-Baptiste Kempf git at videolan.org
Mon Oct 31 00:42:29 CET 2011


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Oct 28 15:13:51 2011 +0200| [f1cb2188053eb019a11f55639c648d9a6ee0d10a] | committer: Jean-Baptiste Kempf

Netsync: fix return type

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f1cb2188053eb019a11f55639c648d9a6ee0d10a
---

 modules/control/netsync.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/modules/control/netsync.c b/modules/control/netsync.c
index 6db3c34..517c12a 100644
--- a/modules/control/netsync.c
+++ b/modules/control/netsync.c
@@ -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,



More information about the vlc-commits mailing list