xf86drm: fix return type for drmIsMaster()
authorEric Engestrom <eric.engestrom@intel.com>
Fri, 8 Feb 2019 14:46:07 +0000 (14:46 +0000)
committerEric Engestrom <eric.engestrom@intel.com>
Fri, 8 Feb 2019 18:52:36 +0000 (18:52 +0000)
commiteba6609b7bee5a56fa5334992b1e6f3aef8d244a
tree40cf78b17123143735ca3c0595555c1b752be141
parent17dfe3ac93217b43f93bc81d1129bd38a89d0368
xf86drm: fix return type for drmIsMaster()

Xserver has struct members named `bool`, which means the last commit
breaks its build with errors like this:

  error: two or more data types in declaration specifiers
  Bool bool;
       ^

Fix this by making it return a 0/1 integer, with the same semantic as
the boolean it was before.

Bug: https://bugs.freedesktop.org/show_bug.cgi?id=109587
Fixes: 17dfe3ac93217b43f93b "xf86drm: Add drmIsMaster()"
Cc: Christopher James Halse Rogers <christopher.halse.rogers@canonical.com>
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
xf86drm.c
xf86drm.h