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:
Simon Ser 2022-04-17 17:20:33 +02:00
parent 329be63d6b
commit b0a4e63351
2 changed files with 32 additions and 32 deletions

View file

@ -166,9 +166,9 @@ typedef struct _XcursorFile XcursorFile;
struct _XcursorFile {
void *closure;
int (*read) (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 (*read)(XcursorFile *file, unsigned char *buf, int len);
int (*write)(XcursorFile *file, unsigned char *buf, int len);
int (*seek)(XcursorFile *file, long offset, int whence);
};
typedef struct _XcursorComments {