Skip to content

Commit 4de76ae

Browse files
committed
RIMOV core::hash
1 parent 808ccd3 commit 4de76ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/hash.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ struct SipState {
165165
mut v1: u64,
166166
mut v2: u64,
167167
mut v3: u64,
168-
tail: [mut u8 * 8], // unprocessed bytes
168+
mut tail: [u8 * 8], // unprocessed bytes
169169
mut ntail: uint, // how many bytes in tail are valid
170170
}
171171

@@ -179,7 +179,7 @@ fn SipState(key0: u64, key1: u64) -> SipState {
179179
mut v1 : 0u64,
180180
mut v2 : 0u64,
181181
mut v3 : 0u64,
182-
tail : [mut 0u8,0,0,0,0,0,0,0],
182+
mut tail : [0u8,0,0,0,0,0,0,0],
183183
mut ntail : 0u,
184184
};
185185
(&state).reset();

0 commit comments

Comments
 (0)