weston-scaler --help works even if not run inside wayland

This commit is contained in:
Bill Spitzak 2014-08-08 13:00:00 -07:00 committed by Pekka Paalanen
parent a8292618a6
commit 0fc3786dff
1 changed files with 6 additions and 6 deletions

View File

@ -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);