File tree 2 files changed +2
-2
lines changed 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ impl PgpPublicKey {
171
171
/// Retrieve the key.
172
172
pub ( crate ) fn cert ( & self ) -> & Cert {
173
173
match self {
174
- Self :: Builtin => & * BUILTIN_PGP_KEY ,
174
+ Self :: Builtin => & BUILTIN_PGP_KEY ,
175
175
Self :: FromEnvironment ( _, k) => k,
176
176
Self :: FromConfiguration ( _, k) => k,
177
177
}
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ impl<'a> TarPackage<'a> {
149
149
// The rust-installer packages unpack to a directory called
150
150
// $pkgname-$version-$target. Skip that directory when
151
151
// unpacking.
152
- unpack_without_first_dir ( & mut archive, & * temp_dir, notify_handler)
152
+ unpack_without_first_dir ( & mut archive, & temp_dir, notify_handler)
153
153
. context ( "failed to extract package (perhaps you ran out of disk space?)" ) ?;
154
154
155
155
Ok ( TarPackage (
You can’t perform that action at this time.
0 commit comments