mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	Whitespace normalization.
This commit is contained in:
		
							parent
							
								
									3e1c18ad0c
								
							
						
					
					
						commit
						37d5a15e02
					
				
					 1 changed files with 4 additions and 4 deletions
				
			
		|  | @ -91,10 +91,10 @@ w_short(int x, WFILE *p) | |||
| static void | ||||
| w_long(long x, WFILE *p) | ||||
| { | ||||
|  	w_byte((char)( x      & 0xff), p); | ||||
|  	w_byte((char)((x>> 8) & 0xff), p); | ||||
|  	w_byte((char)((x>>16) & 0xff), p); | ||||
|  	w_byte((char)((x>>24) & 0xff), p); | ||||
| 	w_byte((char)( x      & 0xff), p); | ||||
| 	w_byte((char)((x>> 8) & 0xff), p); | ||||
| 	w_byte((char)((x>>16) & 0xff), p); | ||||
| 	w_byte((char)((x>>24) & 0xff), p); | ||||
| } | ||||
| 
 | ||||
| #if SIZEOF_LONG > 4 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Thomas Heller
						Thomas Heller