aboutsummaryrefslogtreecommitdiff
path: root/plugins/crypto-vala/src/error.vala
diff options
context:
space:
mode:
authorMarvin W <git@larma.de>2019-09-16 23:47:38 +0200
committerMarvin W <git@larma.de>2019-09-16 23:57:48 +0200
commit9daf18f031058ae4c1f13edbf62624bc0345c96f (patch)
tree6dc4d43bc7c4a5681e3814aa95da2c9a24f3268c /plugins/crypto-vala/src/error.vala
parent392cb472abcdff9424197c8504175ee79c22dde5 (diff)
downloaddino-9daf18f031058ae4c1f13edbf62624bc0345c96f.tar.gz
dino-9daf18f031058ae4c1f13edbf62624bc0345c96f.zip
Fix warnings and compilation with older valac
Diffstat (limited to 'plugins/crypto-vala/src/error.vala')
-rw-r--r--plugins/crypto-vala/src/error.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/crypto-vala/src/error.vala b/plugins/crypto-vala/src/error.vala
index c694dfc7..bae4ad08 100644
--- a/plugins/crypto-vala/src/error.vala
+++ b/plugins/crypto-vala/src/error.vala
@@ -5,7 +5,7 @@ public errordomain Error {
GCRYPT
}
-internal void may_throw_gcrypt_error(GCrypt.Error e) throws GLib.Error {
+internal void may_throw_gcrypt_error(GCrypt.Error e) throws Error {
if (((int)e) != 0) {
throw new Crypto.Error.GCRYPT(e.to_string());
}