File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3153,7 +3153,7 @@ mod tests {
3153
3153
let mut p = vals. as_mut_ptr ( ) ;
3154
3154
3155
3155
if ( p as usize ) & 0xf != 0 {
3156
- ofs = ( ( 16 - ( p as usize ) ) & 0xf ) >> 2 ;
3156
+ ofs = ( 16 - ( ( p as usize ) & 0xf ) ) >> 2 ;
3157
3157
p = p. add ( ofs) ;
3158
3158
}
3159
3159
@@ -3179,7 +3179,7 @@ mod tests {
3179
3179
3180
3180
// Align p to 16-byte boundary
3181
3181
if ( p as usize ) & 0xf != 0 {
3182
- ofs = ( ( 16 - ( p as usize ) ) & 0xf ) >> 2 ;
3182
+ ofs = ( 16 - ( ( p as usize ) & 0xf ) ) >> 2 ;
3183
3183
p = p. add ( ofs) ;
3184
3184
}
3185
3185
@@ -3205,7 +3205,7 @@ mod tests {
3205
3205
3206
3206
// Align p to 16-byte boundary
3207
3207
if ( p as usize ) & 0xf != 0 {
3208
- ofs = ( ( 16 - ( p as usize ) ) & 0xf ) >> 2 ;
3208
+ ofs = ( 16 - ( ( p as usize ) & 0xf ) ) >> 2 ;
3209
3209
p = p. add ( ofs) ;
3210
3210
}
3211
3211
You can’t perform that action at this time.
0 commit comments