diff options
author | Marvin W <git@larma.de> | 2019-09-16 23:47:38 +0200 |
---|---|---|
committer | Marvin W <git@larma.de> | 2019-09-16 23:57:48 +0200 |
commit | 9daf18f031058ae4c1f13edbf62624bc0345c96f (patch) | |
tree | 6dc4d43bc7c4a5681e3814aa95da2c9a24f3268c /plugins/crypto-vala/src/error.vala | |
parent | 392cb472abcdff9424197c8504175ee79c22dde5 (diff) | |
download | dino-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.vala | 2 |
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()); } |