diff options
author | Daniel De Graaf <dgdegra@tycho.nsa.gov> | 2010-12-09 16:48:35 -0500 |
---|---|---|
committer | Daniel De Graaf <dgdegra@tycho.nsa.gov> | 2010-12-09 16:48:35 -0500 |
commit | 7e464aec3d6dd9f84af25a9024b91c6683648cf1 (patch) | |
tree | 7dedd40577a28c9458863c830053748d617ce8cc /src | |
parent | 53223760a3cdcd36eb0b05e9f480874f9b2e3f9b (diff) |
Fix vchan_server_init call
Diffstat (limited to 'src')
-rw-r--r-- | src/track.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/track.c b/src/track.c index 50fe013..715efe3 100644 --- a/src/track.c +++ b/src/track.c @@ -339,7 +339,7 @@ setup_vchan() { perror("xs_read of device/vfb/0/backend-id"); return -1; } - ctrl = libvchan_server_init(atoi(res), LINPICKER_VPORT); + ctrl = libvchan_server_init(atoi(res), LINPICKER_VPORT, 0, 0); free(res); if (!ctrl) { perror("libvchan_init_server"); |