Skip to content

Commit 04a4b8c

Browse files
committed
Auto merge of #2254 - JohnTitor:unused-borrow, r=JohnTitor
Fix `unused borrow` lint warning r? `@ghost`
2 parents 4d4f150 + 34213a4 commit 04a4b8c

File tree

1 file changed

+1
-1
lines changed
  • src/unix/linux_like/android/b32

1 file changed

+1
-1
lines changed

src/unix/linux_like/android/b32/arm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ cfg_if! {
138138
self.uc_stack.hash(state);
139139
self.uc_mcontext.hash(state);
140140
self.uc_sigmask__c_anonymous_union.hash(state);
141-
&self.uc_regspace[..].hash(state);
141+
self.uc_regspace[..].hash(state);
142142
// Ignore padding field
143143
}
144144
}

0 commit comments

Comments
 (0)