diff options
author | hrxi <hrrrxi@gmail.com> | 2023-06-20 20:42:11 +0200 |
---|---|---|
committer | fiaxh <fiaxh@users.noreply.github.com> | 2023-10-06 15:25:12 +0200 |
commit | dd0038f5e2916b21f58d83dabe9675994635e41f (patch) | |
tree | 2201bc6130703f93767b07808d9f01420e3e70f4 /plugins/gpgme-vala/src/gpgme_fix.h | |
parent | c2efb214afa9f712c7ac112899c7d9b730e10de0 (diff) | |
download | dino-dd0038f5e2916b21f58d83dabe9675994635e41f.tar.gz dino-dd0038f5e2916b21f58d83dabe9675994635e41f.zip |
Fix every inclusion of `gpgme_fix.h` getting their own mutex
Diffstat (limited to 'plugins/gpgme-vala/src/gpgme_fix.h')
-rw-r--r-- | plugins/gpgme-vala/src/gpgme_fix.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/gpgme-vala/src/gpgme_fix.h b/plugins/gpgme-vala/src/gpgme_fix.h index 3daa7db0..714614fc 100644 --- a/plugins/gpgme-vala/src/gpgme_fix.h +++ b/plugins/gpgme-vala/src/gpgme_fix.h @@ -4,9 +4,9 @@ #include <glib.h> #include <gpgme.h> -static GRecMutex gpgme_global_mutex; +extern GRecMutex gpgme_global_mutex; gpgme_key_t gpgme_key_ref_vapi (gpgme_key_t key); gpgme_key_t gpgme_key_unref_vapi (gpgme_key_t key); -#endif
\ No newline at end of file +#endif |