mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 03:44:06 +00:00
hw: xfree86: seatd: remove unnecessary semicolons
Functions don't need to be terminated by semicolons, so this only generates warnings. Signed-off-by: Aggelos Tselios <aggelostselios777@gmail.com>
This commit is contained in:
committed by
Enrico Weigelt, metux IT consult
parent
095ea152b4
commit
4bf912f92b
@@ -50,13 +50,13 @@ extern int seatd_libseat_switch_session(int session);
|
||||
extern Bool seatd_libseat_controls_session(void);
|
||||
#else
|
||||
|
||||
static inline int seatd_libseat_init(bool KeepTty_state) {(void)KeepTty_state; return -1; };
|
||||
static inline int seatd_libseat_init(bool KeepTty_state) {(void)KeepTty_state; return -1; }
|
||||
static inline void seatd_libseat_fini(void) {};
|
||||
static inline int seatd_libseat_open_graphics(const char *path) {(void)path; return -1; }
|
||||
static inline void seatd_libseat_open_device(void *p,int *fd, Bool *paus) { (void)p;(void)fd;(void)paus; };
|
||||
static inline void seatd_libseat_close_device(void *p) { (void)p;};
|
||||
static inline int seatd_libseat_switch_session(int session) { return -1; };
|
||||
static inline Bool seatd_libseat_controls_session(void) { return FALSE; };
|
||||
static inline void seatd_libseat_open_device(void *p,int *fd, Bool *paus) { (void)p;(void)fd;(void)paus; }
|
||||
static inline void seatd_libseat_close_device(void *p) { (void)p;}
|
||||
static inline int seatd_libseat_switch_session(int session) { return -1; }
|
||||
static inline Bool seatd_libseat_controls_session(void) { return FALSE; }
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user