mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	Patch tested by compiling with `__attribute__ ((format (printf, 2, 3)))` applied to `cmd_results_new`. String usage constants have been converted from pointers to arrays when encountered. General handler format strings were sometimes modified to include the old input string, especially for unknown command errors.
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			679 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			679 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include <string.h>
 | 
						|
#include <strings.h>
 | 
						|
#include "sway/commands.h"
 | 
						|
 | 
						|
struct cmd_results *cmd_workspace_layout(int argc, char **argv) {
 | 
						|
	struct cmd_results *error = NULL;
 | 
						|
	if ((error = checkarg(argc, "workspace_layout", EXPECTED_EQUAL_TO, 1))) {
 | 
						|
		return error;
 | 
						|
	}
 | 
						|
	if (strcasecmp(argv[0], "default") == 0) {
 | 
						|
		config->default_layout = L_NONE;
 | 
						|
	} else if (strcasecmp(argv[0], "stacking") == 0) {
 | 
						|
		config->default_layout = L_STACKED;
 | 
						|
	} else if (strcasecmp(argv[0], "tabbed") == 0) {
 | 
						|
		config->default_layout = L_TABBED;
 | 
						|
	} else {
 | 
						|
		return cmd_results_new(CMD_INVALID,
 | 
						|
				"Expected 'workspace_layout <default|stacking|tabbed>'");
 | 
						|
	}
 | 
						|
	return cmd_results_new(CMD_SUCCESS, NULL);
 | 
						|
}
 |