mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-11 00:53:48 +01:00
fix another 'format not a string literal and no format arguments' warning
This commit is contained in:
parent
ed724cc03d
commit
1927622137
@ -168,7 +168,7 @@ cmd_info(girara_session_t* session, girara_list_t* UNUSED(argument_list))
|
||||
|
||||
if (strlen(string->str) > 0) {
|
||||
g_string_erase(string, strlen(string->str) - 1, 1);
|
||||
girara_notify(session, GIRARA_INFO, string->str);
|
||||
girara_notify(session, GIRARA_INFO, "%s", string->str);
|
||||
}
|
||||
|
||||
g_string_free(string, TRUE);
|
||||
|
Loading…
Reference in New Issue
Block a user