mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	pulse-server: add missing minus sign
Noticed by @QuLogic.
Fixes: 87c00a6f00 ("pulse-server: add missing EWOULDBLOCK check")
			
			
This commit is contained in:
		
							parent
							
								
									2723b0c6e2
								
							
						
					
					
						commit
						80e3da9b01
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -5654,7 +5654,7 @@ on_client_data(void *data, int fd, uint32_t mask)
 | 
				
			||||||
		while (true) {
 | 
							while (true) {
 | 
				
			||||||
			res = do_read(client);
 | 
								res = do_read(client);
 | 
				
			||||||
			if (res < 0) {
 | 
								if (res < 0) {
 | 
				
			||||||
				if (res != -EAGAIN && res != EWOULDBLOCK)
 | 
									if (res != -EAGAIN && res != -EWOULDBLOCK)
 | 
				
			||||||
					goto error;
 | 
										goto error;
 | 
				
			||||||
				break;
 | 
									break;
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue