mirror of
				https://github.com/python/cpython.git
				synced 2025-10-30 21:21:22 +00:00 
			
		
		
		
	Issue #9566: Fix compilater warnings on Windows 64-bit
This commit is contained in:
		
							parent
							
								
									56785eab33
								
							
						
					
					
						commit
						9550ef30e3
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -570,7 +570,7 @@ convertsimple(PyObject *arg, const char **p_format, va_list *p_va, int flags, | ||||||
|                 "size does not fit in an int"); \ |                 "size does not fit in an int"); \ | ||||||
|             return converterr("", arg, msgbuf, bufsize); \ |             return converterr("", arg, msgbuf, bufsize); \ | ||||||
|         } \ |         } \ | ||||||
|         *q=s; \ |         *q = (int)s; \ | ||||||
|     } |     } | ||||||
| #define BUFFER_LEN      ((flags & FLAG_SIZE_T) ? *q2:*q) | #define BUFFER_LEN      ((flags & FLAG_SIZE_T) ? *q2:*q) | ||||||
| #define RETURN_ERR_OCCURRED return msgbuf | #define RETURN_ERR_OCCURRED return msgbuf | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Victor Stinner
						Victor Stinner