mirror of
https://github.com/swaywm/sway.git
synced 2025-11-01 22:58:41 -04:00
fixed #108 signed/unsigned comparison
This commit is contained in:
parent
7ecb55f218
commit
8dfaf6265b
7 changed files with 20 additions and 16 deletions
|
|
@ -10,10 +10,10 @@ typedef enum {
|
|||
L_DEBUG = 3,
|
||||
} log_importance_t;
|
||||
|
||||
void init_log(int verbosity);
|
||||
void init_log(log_importance_t verbosity);
|
||||
void sway_log_colors(int mode);
|
||||
void sway_log(int verbosity, const char* format, ...) __attribute__((format(printf,2,3)));
|
||||
void sway_log_errno(int verbosity, char* format, ...) __attribute__((format(printf,2,3)));
|
||||
void sway_log(log_importance_t verbosity, const char* format, ...) __attribute__((format(printf,2,3)));
|
||||
void sway_log_errno(log_importance_t verbosity, char* format, ...) __attribute__((format(printf,2,3)));
|
||||
void sway_abort(const char* format, ...) __attribute__((format(printf,1,2)));
|
||||
bool sway_assert(bool condition, const char* format, ...) __attribute__((format(printf,2,3)));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue