File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1956,17 +1956,17 @@ readfile(
19561956 {
19571957 if (fio_flags & FIO_ENDIAN_L )
19581958 {
1959- u8c = (* -- p << 24 ) ;
1960- u8c += (* -- p << 16 ) ;
1961- u8c += (* -- p << 8 ) ;
1959+ u8c = (unsigned ) * -- p << 24 ;
1960+ u8c += (unsigned ) * -- p << 16 ;
1961+ u8c += (unsigned ) * -- p << 8 ;
19621962 u8c += * -- p ;
19631963 }
19641964 else /* big endian */
19651965 {
19661966 u8c = * -- p ;
1967- u8c += (* -- p << 8 ) ;
1968- u8c += (* -- p << 16 ) ;
1969- u8c += (* -- p << 24 ) ;
1967+ u8c += (unsigned ) * -- p << 8 ;
1968+ u8c += (unsigned ) * -- p << 16 ;
1969+ u8c += (unsigned ) * -- p << 24 ;
19701970 }
19711971 }
19721972 else /* UTF-8 */
Original file line number Diff line number Diff line change @@ -761,6 +761,8 @@ static char *(features[]) =
761761
762762static int included_patches [] =
763763{ /* Add new patch number below this line */
764+ /**/
765+ 1227 ,
764766/**/
765767 1226 ,
766768/**/
You can’t perform that action at this time.
0 commit comments