compext: replace tabs by whitespaces

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-09-22 15:44:06 +02:00 committed by Enrico Weigelt
parent 7b37b0c28b
commit ec16f09861
2 changed files with 18 additions and 18 deletions

View File

@ -133,15 +133,15 @@ ProcCompositeQueryVersion(ClientPtr client)
return X_SEND_REPLY_SIMPLE(client, rep);
}
#define VERIFY_WINDOW(pWindow, wid, client, mode) \
do { \
int err; \
err = dixLookupResourceByType((void **) &pWindow, wid, \
X11_RESTYPE_WINDOW, client, mode);\
if (err != Success) { \
client->errorValue = wid; \
return err; \
} \
#define VERIFY_WINDOW(pWindow, wid, client, mode) \
do { \
int err; \
err = dixLookupResourceByType((void **) &pWindow, wid, \
X11_RESTYPE_WINDOW, client, mode);\
if (err != Success) { \
client->errorValue = wid; \
return err; \
} \
} while (0)
static int

View File

@ -1,19 +1,19 @@
srcs_composite = [
'compalloc.c',
'compext.c',
'compinit.c',
'compoverlay.c',
'compwindow.c',
'compalloc.c',
'compext.c',
'compinit.c',
'compoverlay.c',
'compwindow.c',
]
hdrs_composite = [
'compositeext.h',
'compositeext.h',
]
libxserver_composite = static_library('xserver_composite',
srcs_composite,
include_directories: inc,
dependencies: common_dep,
srcs_composite,
include_directories: inc,
dependencies: common_dep,
)
if build_xorg