mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-04-30 22:38:01 +02:00
weston-scaler --help works even if not run inside wayland
This commit is contained in:
parent
a8292618a6
commit
0fc3786dff
1 changed files with 6 additions and 6 deletions
|
|
@ -274,12 +274,6 @@ main(int argc, char *argv[])
|
|||
struct timeval tv;
|
||||
int i;
|
||||
|
||||
d = display_create(&argc, argv);
|
||||
if (d == NULL) {
|
||||
fprintf(stderr, "failed to create display: %m\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
box.mode = MODE_SRC_DST;
|
||||
|
||||
for (i = 1; i < argc; i++) {
|
||||
|
|
@ -297,6 +291,12 @@ main(int argc, char *argv[])
|
|||
}
|
||||
}
|
||||
|
||||
d = display_create(&argc, argv);
|
||||
if (d == NULL) {
|
||||
fprintf(stderr, "failed to create display: %m\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
gettimeofday(&tv, NULL);
|
||||
srandom(tv.tv_usec);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue