mirror of
https://github.com/swaywm/sway.git
synced 2024-11-21 15:31:28 +00:00
config/output: Make merge_output_config static
This commit is contained in:
parent
9becff0ba5
commit
c3fca26d30
|
@ -688,8 +688,6 @@ const char *sway_output_scale_filter_to_string(enum scale_filter_mode scale_filt
|
|||
|
||||
struct output_config *new_output_config(const char *name);
|
||||
|
||||
void merge_output_config(struct output_config *dst, struct output_config *src);
|
||||
|
||||
bool apply_output_configs(struct matched_output_config *configs,
|
||||
size_t configs_len, bool test_only);
|
||||
|
||||
|
|
|
@ -79,7 +79,7 @@ struct output_config *new_output_config(const char *name) {
|
|||
return oc;
|
||||
}
|
||||
|
||||
void merge_output_config(struct output_config *dst, struct output_config *src) {
|
||||
static void merge_output_config(struct output_config *dst, struct output_config *src) {
|
||||
if (src->enabled != -1) {
|
||||
dst->enabled = src->enabled;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue