mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 21:51:50 +00:00 
			
		
		
		
	bpo-26219: Fix compiler warning in _PyCode_InitOpcache() (GH-13997)
Fix MSVC warning:
    objects\codeobject.c(285): warning C4244: '=':
    conversion from 'Py_ssize_t' to 'unsigned char',
    possible loss of data
			
			
This commit is contained in:
		
							parent
							
								
									eb976e47e2
								
							
						
					
					
						commit
						376ce9852e
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -282,7 +282,7 @@ _PyCode_InitOpcache(PyCodeObject *co) | |||
|         co->co_opcache = NULL; | ||||
|     } | ||||
| 
 | ||||
|     co->co_opcache_size = opts; | ||||
|     co->co_opcache_size = (unsigned char)opts; | ||||
|     return 0; | ||||
| } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Victor Stinner
						Victor Stinner