1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -05:00

Fix compiler warnings in window mode.

This commit is contained in:
Qball Cow 2024-02-25 23:39:05 +01:00
parent 2bbaa36b7a
commit 43790b3eda

View file

@ -161,7 +161,7 @@ winlist *cache_client = NULL;
* *
* @returns A new window list. * @returns A new window list.
*/ */
static winlist *winlist_new() { static winlist *winlist_new(void) {
winlist *l = g_malloc(sizeof(winlist)); winlist *l = g_malloc(sizeof(winlist));
l->len = 0; l->len = 0;
l->array = g_malloc_n(WINLIST + 1, sizeof(xcb_window_t)); l->array = g_malloc_n(WINLIST + 1, sizeof(xcb_window_t));
@ -470,7 +470,7 @@ static int window_match(const Mode *sw, rofi_int_matcher **tokens,
return match; return match;
} }
static void window_mode_parse_fields() { static void window_mode_parse_fields(void) {
window_matching_fields_parsed = TRUE; window_matching_fields_parsed = TRUE;
char *savept = NULL; char *savept = NULL;
// Make a copy, as strtok will modify it. // Make a copy, as strtok will modify it.
@ -971,7 +971,7 @@ static cairo_user_data_key_t data_key;
static cairo_surface_t *draw_surface_from_data(uint32_t width, uint32_t height, static cairo_surface_t *draw_surface_from_data(uint32_t width, uint32_t height,
uint32_t const *const data) { uint32_t const *const data) {
// limit surface size. // limit surface size.
if ( width >= 65536 || height >= 65536){ if (width >= 65536 || height >= 65536) {
return NULL; return NULL;
} }
uint32_t len = width * height; uint32_t len = width * height;
@ -1138,8 +1138,8 @@ Mode window_mode = {.name = "window",
._get_completion = NULL, ._get_completion = NULL,
._preprocess_input = NULL, ._preprocess_input = NULL,
.private_data = NULL, .private_data = NULL,
.free = NULL, .free = NULL,
.type = MODE_TYPE_SWITCHER }; .type = MODE_TYPE_SWITCHER};
Mode window_mode_cd = {.name = "windowcd", Mode window_mode_cd = {.name = "windowcd",
.cfg_name_key = "display-windowcd", .cfg_name_key = "display-windowcd",
._init = window_mode_init_cd, ._init = window_mode_init_cd,
@ -1153,6 +1153,6 @@ Mode window_mode_cd = {.name = "windowcd",
._preprocess_input = NULL, ._preprocess_input = NULL,
.private_data = NULL, .private_data = NULL,
.free = NULL, .free = NULL,
.type = MODE_TYPE_SWITCHER }; .type = MODE_TYPE_SWITCHER};
#endif // WINDOW_MODE #endif // WINDOW_MODE