diff options
author | Pablo Barciela <[email protected]> | 2017-12-31 02:55:38 +0100 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2017-12-31 02:56:37 +0100 |
commit | 294d3ec5a0ae4a818fb2ce53d27a0a935a9ef760 (patch) | |
tree | 7d6e3cb63d9d4a8d6d6cdc221071cef1759248a9 /src | |
parent | 7e2aea33a6fa5ba3bed740b65aaafb872551c150 (diff) | |
download | marco-294d3ec5a0ae4a818fb2ce53d27a0a935a9ef760.tar.bz2 marco-294d3ec5a0ae4a818fb2ce53d27a0a935a9ef760.tar.xz |
keybindings.c: Fix build warning:
assignment discards ‘const’ qualifier from pointer target type
Diffstat (limited to 'src')
-rw-r--r-- | src/core/keybindings.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/keybindings.c b/src/core/keybindings.c index 388c723f..4dff55a0 100644 --- a/src/core/keybindings.c +++ b/src/core/keybindings.c @@ -3591,7 +3591,8 @@ handle_rename_workspace(MetaDisplay *display, XEvent *event, MetaKeyBinding *binding) { - gchar *window_title, *window_content, *entry_text; + gchar *window_title, *window_content; + const char *entry_text; GPid dialog_pid; meta_topic (META_DEBUG_KEYBINDINGS, "handle_rename_workspace: called.\n"); |