summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2018-09-22 13:35:54 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2018-09-22 13:37:15 -0700
commitefd68bc7bf95959652619763bb5d37428546000d (patch)
treea002bb0c696a7b3cc585dde4293e3dfc8e1c2209
parentb086401357cfdf02cbd52d29dcd604f6cabaa1d8 (diff)
Make xvinfo not exit with error in normal operation
Fixes https://bugs.freedesktop.org/show_bug.cgi?id=74227 aka https://gitlab.freedesktop.org/xorg/app/xvinfo/issues/1 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--xvinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xvinfo.c b/xvinfo.c
index db1a008..49c60cd 100644
--- a/xvinfo.c
+++ b/xvinfo.c
@@ -322,5 +322,5 @@ main(int argc, char *argv[])
XvFreeAdaptorInfo(ainfo);
}
- return 1;
+ return 0;
}