cursor: drop whitespace before parens in function calls

This is in line with the rest of the Wayland code style.

Signed-off-by: Simon Ser <contact@emersion.fr>
This commit is contained in:
Simon Ser 2022-04-17 17:10:53 +02:00
parent 13d4ae01cb
commit 5f5f1da691
2 changed files with 127 additions and 127 deletions

View file

@ -49,10 +49,10 @@ typedef struct _XcursorImages {
} XcursorImages;
void
XcursorImagesDestroy (XcursorImages *images);
XcursorImagesDestroy(XcursorImages *images);
void
xcursor_load_theme(const char *theme, int size,
void (*load_callback)(XcursorImages *, void *),
void *user_data);
void (*load_callback)(XcursorImages *, void *),
void *user_data);
#endif