1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-07-31 21:59:25 -04: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.
*/
static winlist *winlist_new() {
static winlist *winlist_new(void) {
winlist *l = g_malloc(sizeof(winlist));
l->len = 0;
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;
}
static void window_mode_parse_fields() {
static void window_mode_parse_fields(void) {
window_matching_fields_parsed = TRUE;
char *savept = NULL;
// Make a copy, as strtok will modify it.