Commit 46626b9d authored by Rémi Duraffort's avatar Rémi Duraffort

Missing return values.

parent e2cc2f75
...@@ -208,6 +208,7 @@ static void *Master(void *handle) ...@@ -208,6 +208,7 @@ static void *Master(void *handle)
(from.ss_family == AF_INET) ? inet_ntoa(((struct sockaddr_in *)&from)->sin_addr) (from.ss_family == AF_INET) ? inet_ntoa(((struct sockaddr_in *)&from)->sin_addr)
: "non-IPv4", /*date*/ 0); : "non-IPv4", /*date*/ 0);
#endif #endif
return NULL;
} }
} }
...@@ -268,6 +269,7 @@ static void *Slave(void *handle) ...@@ -268,6 +269,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