This commit is contained in:
Quentin 2020-01-28 12:03:39 +01:00
parent 72199376a6
commit 32f6256547
1 changed files with 1 additions and 2 deletions

View File

@ -89,7 +89,6 @@ gboolean stop_handler(gpointer user_data) {
int main(int argc, char *argv[]) {
GMainLoop *loop;
char *remote_host;
struct dcall_elements de;
/* Check input arguments */
@ -97,7 +96,7 @@ int main(int argc, char *argv[]) {
g_printerr ("Usage: %s <Remote host>\n", argv[0]);
return -1;
}
remote_host = argv[1];
de.remote_host = argv[1];
gst_init (&argc, &argv);
loop = g_main_loop_new (NULL, FALSE);