aboutsummaryrefslogtreecommitdiffstats
path: root/fbpdf.c
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2019-01-31 10:49:31 +0100
committerGerd Hoffmann <kraxel@redhat.com>2019-01-31 10:49:31 +0100
commit620c38f6f45a8708d9dd82f638beb06789b6c7d1 (patch)
tree79629772daacf0be6a40fd562d564bde8231ae7b /fbpdf.c
parent7fcf29ed3f77f60873bad160d5afac498746d6d8 (diff)
downloadfbida-620c38f6f45a8708d9dd82f638beb06789b6c7d1.tar.gz
drop -vt option
Diffstat (limited to 'fbpdf.c')
-rw-r--r--fbpdf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fbpdf.c b/fbpdf.c
index 91ccecd..4f6562e 100644
--- a/fbpdf.c
+++ b/fbpdf.c
@@ -303,14 +303,14 @@ int main(int argc, char *argv[])
gfx = drm_init(device, output, mode, pageflip);
} else {
framebuffer = true;
- gfx = fb_init(device, mode, GET_VT());
+ gfx = fb_init(device, mode);
}
} else {
/* try drm first, failing that fb */
gfx = drm_init(NULL, output, mode, pageflip);
if (!gfx) {
framebuffer = true;
- gfx = fb_init(NULL, mode, GET_VT());
+ gfx = fb_init(NULL, mode);
}
}
if (!gfx) {