mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-01 22:58:40 -04:00
cursor: fix struct declaration style
Use tabs for indentation, don't use tabs to align field names. Signed-off-by: Simon Ser <contact@emersion.fr>
This commit is contained in:
parent
329be63d6b
commit
b0a4e63351
2 changed files with 32 additions and 32 deletions
|
|
@ -166,9 +166,9 @@ typedef struct _XcursorFile XcursorFile;
|
||||||
|
|
||||||
struct _XcursorFile {
|
struct _XcursorFile {
|
||||||
void *closure;
|
void *closure;
|
||||||
int (*read) (XcursorFile *file, unsigned char *buf, int len);
|
int (*read)(XcursorFile *file, unsigned char *buf, int len);
|
||||||
int (*write) (XcursorFile *file, unsigned char *buf, int len);
|
int (*write)(XcursorFile *file, unsigned char *buf, int len);
|
||||||
int (*seek) (XcursorFile *file, long offset, int whence);
|
int (*seek)(XcursorFile *file, long offset, int whence);
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct _XcursorComments {
|
typedef struct _XcursorComments {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue