diff options
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()); } |