mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 03:17:46 +03:00
commands: add printf attribute to cmd_results_new()
And fix the resulting build failures.
This commit is contained in:
parent
d6915f6428
commit
a7b50f6c9c
19 changed files with 63 additions and 58 deletions
|
@ -3,6 +3,7 @@
|
|||
|
||||
#include <wlr/util/edges.h>
|
||||
#include "config.h"
|
||||
#include "stringop.h"
|
||||
|
||||
struct sway_container;
|
||||
|
||||
|
@ -76,7 +77,7 @@ struct cmd_results *config_commands_command(char *exec);
|
|||
/**
|
||||
* Allocates a cmd_results object.
|
||||
*/
|
||||
struct cmd_results *cmd_results_new(enum cmd_status status, const char *error, ...);
|
||||
struct cmd_results *cmd_results_new(enum cmd_status status, const char *error, ...) _SWAY_ATTRIB_PRINTF(2, 3);
|
||||
/**
|
||||
* Frees a cmd_results object.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue