mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-28 06:56:00 +01:00
Fix format string not a string literal
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
This commit is contained in:
parent
157c9d6d53
commit
f27769d1b7
1 changed files with 1 additions and 1 deletions
|
@ -566,7 +566,7 @@ cb_page_widget_text_selected(ZathuraPage* page, const char* text, void* data)
|
|||
_("Copied selected text to clipboard: %s"), stripped_text);
|
||||
g_free(stripped_text);
|
||||
|
||||
girara_notify(zathura->ui.session, GIRARA_INFO, escaped_text);
|
||||
girara_notify(zathura->ui.session, GIRARA_INFO, "%s", escaped_text);
|
||||
g_free(escaped_text);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue