diff options
author | David Herrmann <dh.herrmann@googlemail.com> | 2012-08-29 17:59:21 +0200 |
---|---|---|
committer | David Herrmann <dh.herrmann@googlemail.com> | 2012-08-29 17:59:21 +0200 |
commit | fc913dd238287a7648310f1d9b56670dd5a8279c (patch) | |
tree | b54733caf410c0c3fd88047435fe439f9029b864 /tests | |
parent | efce8e1747e1dd7be9ba6f4c26706c4a01716278 (diff) |
test_vt: fix using correct uterm API
This still uses the old VT API which now fails as we added a new
parameter. As a side-effect, this test will not work if used on a VT-less
system or on a seat without VTs. But we actually don't care, yet, as any
other VT-replacement isn't really production-ready, yet.
Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_vt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_vt.c b/tests/test_vt.c index e835904..9302815 100644 --- a/tests/test_vt.c +++ b/tests/test_vt.c @@ -102,7 +102,7 @@ int main(int argc, char **argv) if (ret) goto err_exit; - ret = uterm_vt_allocate(vtm, &vt, NULL, NULL, NULL); + ret = uterm_vt_allocate(vtm, &vt, NULL, NULL, NULL, NULL); if (ret) goto err_vtm; |