diff options
Diffstat (limited to 'plugins/fishlim')
-rw-r--r-- | plugins/fishlim/keystore.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/fishlim/keystore.c b/plugins/fishlim/keystore.c index 6bb04ea6..061faa03 100644 --- a/plugins/fishlim/keystore.c +++ b/plugins/fishlim/keystore.c @@ -177,7 +177,9 @@ static gboolean save_keystore(GKeyFile *keyfile) { #if !GLIB_CHECK_VERSION(2,40,0) ok = keyfile_save_to_file (keyfile, filename); #else +G_GNUC_BEGIN_IGNORE_DEPRECATIONS /* Hide false positive */ ok = g_key_file_save_to_file (keyfile, filename, NULL); +G_GNUC_END_IGNORE_DEPRECATIONS #endif g_free (filename); |