mirror of
				https://github.com/webmproject/libwebp.git
				synced 2025-10-31 02:15:42 +01:00 
			
		
		
		
	backward_references.c: Fixed compiler warning
"Implicit conversion loses integer precision: 'long' to 'int'." Change-Id: I1aec7431f84123e5280447883eb80b84a3821d91
This commit is contained in:
		
				
					committed by
					
						 James Zern
						James Zern
					
				
			
			
				
	
			
			
			
						parent
						
							1556da0913
						
					
				
				
					commit
					5ae220bef6
				
			| @@ -88,7 +88,7 @@ static WEBP_INLINE int FindMatchLength(const uint32_t* const array1, | |||||||
|     } else { |     } else { | ||||||
|       // if the uint32_t pointed to are the same, then the following ones have |       // if the uint32_t pointed to are the same, then the following ones have | ||||||
|       // to be different |       // to be different | ||||||
|       return (array1_32 - array1) + (*array1_32 == *array2_32); |       return (int)((array1_32 - array1) + (*array1_32 == *array2_32)); | ||||||
|     } |     } | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user