summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-02-06 14:42:03 +0100
committerJustus Winter <justus@sequoia-pgp.org>2020-02-06 15:06:05 +0100
commit23110e2844a19ffdd1d5c1699cb868f93f734ccc (patch)
treee2a234c3eb522a714bc3ae3c77d2cf3a897829fb /ipc
parenta2c3613b726665919c8a19b4b11329c9155a6a5f (diff)
openpgp, openpgp-ffi, ipc: Add missing dyn.
Diffstat (limited to 'ipc')
-rw-r--r--ipc/tests/gpg-agent.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/tests/gpg-agent.rs b/ipc/tests/gpg-agent.rs
index e8a69d92..909307e1 100644
--- a/ipc/tests/gpg-agent.rs
+++ b/ipc/tests/gpg-agent.rs
@@ -254,7 +254,7 @@ fn decrypt() {
assert_eq!(MESSAGE.as_bytes(), &sink[..]);
struct Helper<'a> {
- policy: &'a Policy,
+ policy: &'a dyn Policy,
ctx: &'a Context,
cert: &'a openpgp::Cert,
}