diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2018-09-22 13:35:54 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2018-09-22 13:37:15 -0700 |
commit | efd68bc7bf95959652619763bb5d37428546000d (patch) | |
tree | a002bb0c696a7b3cc585dde4293e3dfc8e1c2209 | |
parent | b086401357cfdf02cbd52d29dcd604f6cabaa1d8 (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -322,5 +322,5 @@ main(int argc, char *argv[]) XvFreeAdaptorInfo(ainfo); } - return 1; + return 0; } |