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