mirror of
				https://gitlab.freedesktop.org/wayland/wayland.git
				synced 2025-11-03 09:01:42 -05:00 
			
		
		
		
	debug: Use unsigned for object IDs
This commit is contained in:
		
							parent
							
								
									44186b522f
								
							
						
					
					
						commit
						190492b97c
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -740,7 +740,7 @@ wl_closure_print(struct wl_closure *closure, struct wl_object *target, int send)
 | 
				
			||||||
	clock_gettime(CLOCK_REALTIME, &tp);
 | 
						clock_gettime(CLOCK_REALTIME, &tp);
 | 
				
			||||||
	time = (tp.tv_sec * 1000000L) + (tp.tv_nsec / 1000);
 | 
						time = (tp.tv_sec * 1000000L) + (tp.tv_nsec / 1000);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	fprintf(stderr, "[%10.3f] %s%s@%d.%s(",
 | 
						fprintf(stderr, "[%10.3f] %s%s@%u.%s(",
 | 
				
			||||||
		time / 1000.0,
 | 
							time / 1000.0,
 | 
				
			||||||
		send ? " -> " : "",
 | 
							send ? " -> " : "",
 | 
				
			||||||
		target->interface->name, target->id,
 | 
							target->interface->name, target->id,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue