* commit '18661cd8881dfce34306242011198128867777bb': Fix mips64 build. Replace explicit cast with static_cast
This commit is contained in:
		@@ -70,8 +70,8 @@ bool soinfo::relocate(ElfW(Rel)* rel, unsigned count, const soinfo_list_t& globa
 | 
				
			|||||||
        if (ELF64_R_TYPE2(rel->r_info) != R_MIPS_64 ||
 | 
					        if (ELF64_R_TYPE2(rel->r_info) != R_MIPS_64 ||
 | 
				
			||||||
            ELF64_R_TYPE3(rel->r_info) != R_MIPS_NONE) {
 | 
					            ELF64_R_TYPE3(rel->r_info) != R_MIPS_NONE) {
 | 
				
			||||||
          DL_ERR("Unexpected compound relocation type:%d type2:%d type3:%d @ %p (%zu)",
 | 
					          DL_ERR("Unexpected compound relocation type:%d type2:%d type3:%d @ %p (%zu)",
 | 
				
			||||||
                 type, (unsigned)ELF64_R_TYPE2(rel->r_info),
 | 
					                 type, static_cast<unsigned>(ELF64_R_TYPE2(rel->r_info)),
 | 
				
			||||||
                 (unsigned)ELF64_R_TYPE3(rel->r_info), rel, idx);
 | 
					                 static_cast<unsigned>(ELF64_R_TYPE3(rel->r_info)), rel, idx);
 | 
				
			||||||
          return false;
 | 
					          return false;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user