diff options
author | Simon Ser <contact@emersion.fr> | 2022-11-25 18:15:31 +0100 |
---|---|---|
committer | Alexander Orzechowski <alex@ozal.ski> | 2022-12-06 22:39:45 +0000 |
commit | 86fc2199f85ac0e1089bb7fd5a0b5cbc432bdb67 (patch) | |
tree | 3b97acbbdd4d2bf3b956d2e2594bd5b79958dfee /render/allocator/gbm.c | |
parent | a4a40618adb287d6ebebf099ca4d64f39b7f7770 (diff) |
build: unify naming for HAVE_* defines
We sometimes used HAS_, sometimes polluted the LIBINPUT_ namespace,
etc.
Diffstat (limited to 'render/allocator/gbm.c')
-rw-r--r-- | render/allocator/gbm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/render/allocator/gbm.c b/render/allocator/gbm.c index a41065b5..149ff6b9 100644 --- a/render/allocator/gbm.c +++ b/render/allocator/gbm.c @@ -41,7 +41,7 @@ static bool export_gbm_bo(struct gbm_bo *bo, int i; int32_t handle = -1; for (i = 0; i < attribs.n_planes; ++i) { -#if HAS_GBM_BO_GET_FD_FOR_PLANE +#if HAVE_GBM_BO_GET_FD_FOR_PLANE (void)handle; attribs.fd[i] = gbm_bo_get_fd_for_plane(bo, i); |