mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Style nit - unnecessary brackets.
This commit is contained in:
		
							
								
								
									
										4
									
								
								utf8.c
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								utf8.c
									
									
									
									
									
								
							@@ -290,9 +290,9 @@ utf8_build(void)
 | 
				
			|||||||
		while (*ptr != NULL) {
 | 
							while (*ptr != NULL) {
 | 
				
			||||||
			node = *ptr;
 | 
								node = *ptr;
 | 
				
			||||||
			if (item->last < node->first)
 | 
								if (item->last < node->first)
 | 
				
			||||||
				ptr = &(node->left);
 | 
									ptr = &node->left;
 | 
				
			||||||
			else if (item->first > node->last)
 | 
								else if (item->first > node->last)
 | 
				
			||||||
				ptr = &(node->right);
 | 
									ptr = &node->right;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		*ptr = item;
 | 
							*ptr = item;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user