Skip to content

Commit 38919a8

Browse files
Fix compile issue (#683)
(warning becomes an error due to gcc 14 changes.)
1 parent 595d073 commit 38919a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/prefs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2258,7 +2258,7 @@ meta_prefs_add_keybinding (const char *name,
22582258
}
22592259
else
22602260
{
2261-
strokes = g_strdupv (bindings);
2261+
strokes = g_strdupv((gchar **)bindings);
22622262
}
22632263

22642264
queue_changed (META_PREF_KEYBINDINGS);

0 commit comments

Comments
 (0)