action: Fix warning about freeing a (const char *)

This commit is contained in:
John Lindgren 2022-09-16 18:45:02 -04:00
parent cb40cdc36c
commit da57483961

View file

@ -12,7 +12,7 @@ enum action_arg_type {
struct action_arg {
struct wl_list link; /* struct action.args */
const char *key; /* May be NULL if there is just one arg */
char *key; /* May be NULL if there is just one arg */
enum action_arg_type type;
};