diff options
Diffstat (limited to 'sway/commands/focus_follows_mouse.c')
| -rw-r--r-- | sway/commands/focus_follows_mouse.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/commands/focus_follows_mouse.c b/sway/commands/focus_follows_mouse.c index d0d2cb8a..7afb5f62 100644 --- a/sway/commands/focus_follows_mouse.c +++ b/sway/commands/focus_follows_mouse.c @@ -14,8 +14,8 @@ struct cmd_results *cmd_focus_follows_mouse(int argc, char **argv) {  	} else if(strcmp(argv[0], "always") == 0) {  		config->focus_follows_mouse = FOLLOWS_ALWAYS;  	} else { -		return cmd_results_new(CMD_FAILURE, "focus_follows_mouse", +		return cmd_results_new(CMD_FAILURE,  				"Expected 'focus_follows_mouse no|yes|always'");  	} -	return cmd_results_new(CMD_SUCCESS, NULL, NULL); +	return cmd_results_new(CMD_SUCCESS, NULL);  }  | 
