Commit f1cb2188 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Netsync: fix return type

parent 4cff240b
...@@ -209,6 +209,7 @@ static void *Master(void *handle) ...@@ -209,6 +209,7 @@ static void *Master(void *handle)
: "non-IPv4", /*date*/ 0); : "non-IPv4", /*date*/ 0);
#endif #endif
} }
return NULL;
} }
static void *Slave(void *handle) static void *Slave(void *handle)
...@@ -265,6 +266,7 @@ static void *Slave(void *handle) ...@@ -265,6 +266,7 @@ static void *Slave(void *handle)
wait: wait:
msleep(INTF_IDLE_SLEEP); msleep(INTF_IDLE_SLEEP);
} }
return NULL;
} }
static int InputEvent(vlc_object_t *object, char const *cmd, static int InputEvent(vlc_object_t *object, char const *cmd,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment