diff options
author | Florian Klink <flokli@flokli.de> | 2023-02-01T10·14+0100 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-02-01T13·38+0000 |
commit | 361ffd7903ab129657a7dcc37654f3c077321027 (patch) | |
tree | 84bb088e3b4d5c87c2b80601542e27477bda1f6e /tvix/nix-compat/src/derivation/output.rs | |
parent | ce4d87b12966fdeb0bd66b5f6b943bb4cde53669 (diff) |
refactor(tvix/derivation): don't create deref'd immediately ref r/5803
clippy says: > This expression creates a reference which is immediately dereferenced > by the compiler Change-Id: Ic2c093b043ebee9ae80912075083107e4d216cf1 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7995 Tested-by: BuildkiteCI Autosubmit: flokli <flokli@flokli.de> Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'tvix/nix-compat/src/derivation/output.rs')
-rw-r--r-- | tvix/nix-compat/src/derivation/output.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/nix-compat/src/derivation/output.rs b/tvix/nix-compat/src/derivation/output.rs index 9aef7172aec6..39c0dbde5a23 100644 --- a/tvix/nix-compat/src/derivation/output.rs +++ b/tvix/nix-compat/src/derivation/output.rs @@ -26,7 +26,7 @@ impl Output { pub fn validate(&self, validate_output_paths: bool) -> Result<(), OutputError> { if let Some(hash) = &self.hash { // try to decode digest - let result = nixbase32::decode(&hash.digest.as_bytes()); + let result = nixbase32::decode(hash.digest.as_bytes()); match result { Err(e) => return Err(OutputError::InvalidHashEncoding(hash.digest.clone(), e)), Ok(digest) => { |