Skip to content

Commit

Permalink
Fix compiler warnings in window mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveDavenport committed Feb 25, 2024
1 parent 2bbaa36 commit 43790b3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions source/modes/window.c
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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,
uint32_t const *const data) {
// limit surface size.
if ( width >= 65536 || height >= 65536){
if (width >= 65536 || height >= 65536) {
return NULL;
}
uint32_t len = width * height;
Expand Down Expand Up @@ -1138,8 +1138,8 @@ Mode window_mode = {.name = "window",
._get_completion = NULL,
._preprocess_input = NULL,
.private_data = NULL,
.free = NULL,
.type = MODE_TYPE_SWITCHER };
.free = NULL,
.type = MODE_TYPE_SWITCHER};
Mode window_mode_cd = {.name = "windowcd",
.cfg_name_key = "display-windowcd",
._init = window_mode_init_cd,
Expand All @@ -1153,6 +1153,6 @@ Mode window_mode_cd = {.name = "windowcd",
._preprocess_input = NULL,
.private_data = NULL,
.free = NULL,
.type = MODE_TYPE_SWITCHER };
.type = MODE_TYPE_SWITCHER};

#endif // WINDOW_MODE

0 comments on commit 43790b3

Please sign in to comment.