async_win.c: remove unused variable
Silencing this:
    crypto/async/arch/async_win.c: In function 'async_fibre_init_dispatcher':
    crypto/async/arch/async_win.c:112:12: warning: unused variable 'dispatcher' [-Wunused-variable]
         LPVOID dispatcher;
                ^
Signed-off-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
			
			
This commit is contained in:
		
				
					committed by
					
						
						Rich Salz
					
				
			
			
				
	
			
			
			
						parent
						
							3af104f3cc
						
					
				
				
					commit
					1b3cddff2b
				
			@@ -109,8 +109,6 @@ void async_global_cleanup(void)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
int async_fibre_init_dispatcher(async_fibre *fibre)
 | 
					int async_fibre_init_dispatcher(async_fibre *fibre)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    LPVOID dispatcher;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    fibre->fibre = ConvertThreadToFiber(NULL);
 | 
					    fibre->fibre = ConvertThreadToFiber(NULL);
 | 
				
			||||||
    if (fibre->fibre == NULL) {
 | 
					    if (fibre->fibre == NULL) {
 | 
				
			||||||
        fibre->converted = 0;
 | 
					        fibre->converted = 0;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user