diff options
| author | Drew DeVault <[email protected]> | 2018-07-23 20:27:56 -0400 | 
|---|---|---|
| committer | Drew DeVault <[email protected]> | 2018-07-23 20:31:11 -0400 | 
| commit | f4b882475eee7a81c206c7825616cc4656b2f60b (patch) | |
| tree | 38e6ebf81b235424f105dcbcbb194e5e9eac70c0 /sway/commands/bar/font.c | |
| parent | acd79e1505c06089e4fb9fb6c0c6e1d351ba9176 (diff) | |
| parent | 224ade138208e9aa525423cbfbd643aa9d9b63c3 (diff) | |
Merge branch 'master' into pid-workspaces
Diffstat (limited to 'sway/commands/bar/font.c')
| -rw-r--r-- | sway/commands/bar/font.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/sway/commands/bar/font.c b/sway/commands/bar/font.c index 80b7a593..2aa4e895 100644 --- a/sway/commands/bar/font.c +++ b/sway/commands/bar/font.c @@ -14,8 +14,8 @@ struct cmd_results *bar_cmd_font(int argc, char **argv) {  	}  	char *font = join_args(argv, argc);  	free(config->current_bar->font); -	config->current_bar->font = strdup(font); -	wlr_log(L_DEBUG, "Settings font '%s' for bar: %s", +	config->current_bar->font = font; +	wlr_log(WLR_DEBUG, "Settings font '%s' for bar: %s",  			config->current_bar->font, config->current_bar->id);  	return cmd_results_new(CMD_SUCCESS, NULL, NULL);  } | 
