mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	Style fixes for bind.c
This commit is contained in:
		
							parent
							
								
									f2fe93d171
								
							
						
					
					
						commit
						eb00edc6e2
					
				
					 1 changed files with 6 additions and 5 deletions
				
			
		| 
						 | 
				
			
			@ -69,8 +69,9 @@ bool binding_key_compare(struct sway_binding *binding_a,
 | 
			
		|||
	return true;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static struct cmd_results * cmd_bindsym_or_bindcode(int argc, char **argv, bool bindcode) {
 | 
			
		||||
	const char* bindtype = bindcode ? "bindcode" : "bindsym";
 | 
			
		||||
static struct cmd_results *cmd_bindsym_or_bindcode(int argc, char **argv,
 | 
			
		||||
		bool bindcode) {
 | 
			
		||||
	const char *bindtype = bindcode ? "bindcode" : "bindsym";
 | 
			
		||||
 | 
			
		||||
	struct cmd_results *error = NULL;
 | 
			
		||||
	if ((error = checkarg(argc, bindtype, EXPECTED_MORE_THAN, 1))) {
 | 
			
		||||
| 
						 | 
				
			
			@ -149,7 +150,7 @@ static struct cmd_results * cmd_bindsym_or_bindcode(int argc, char **argv, bool
 | 
			
		|||
				return ret;
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
		uint32_t *key = calloc(1, sizeof(xkb_keysym_t));
 | 
			
		||||
		uint32_t *key = calloc(1, sizeof(uint32_t));
 | 
			
		||||
		if (!key) {
 | 
			
		||||
			free_sway_binding(binding);
 | 
			
		||||
			free_flat_list(split);
 | 
			
		||||
| 
						 | 
				
			
			@ -158,9 +159,9 @@ static struct cmd_results * cmd_bindsym_or_bindcode(int argc, char **argv, bool
 | 
			
		|||
		}
 | 
			
		||||
 | 
			
		||||
		if (bindcode) {
 | 
			
		||||
			*key = (uint32_t) keycode;
 | 
			
		||||
			*key = (uint32_t)keycode;
 | 
			
		||||
		} else {
 | 
			
		||||
			*key = (uint32_t) keysym;
 | 
			
		||||
			*key = (uint32_t)keysym;
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		list_add(binding->keys, key);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue