mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-04 04:32:24 -05:00 
			
		
		
		
	Add a const annotation to the non-changing argument of mpi_sub_mul
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
		
							parent
							
								
									6abc20e0e3
								
							
						
					
					
						commit
						742f1a4528
					
				@ -1330,7 +1330,9 @@ cleanup:
 | 
			
		||||
/*
 | 
			
		||||
 * Helper for mbedtls_mpi subtraction
 | 
			
		||||
 */
 | 
			
		||||
static void mpi_sub_hlp( size_t n, mbedtls_mpi_uint *s, mbedtls_mpi_uint *d )
 | 
			
		||||
static void mpi_sub_hlp( size_t n,
 | 
			
		||||
                         const mbedtls_mpi_uint *s,
 | 
			
		||||
                         mbedtls_mpi_uint *d )
 | 
			
		||||
{
 | 
			
		||||
    size_t i;
 | 
			
		||||
    mbedtls_mpi_uint c, z;
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user