mirror of
https://github.com/yshui/picom.git
synced 2024-11-11 13:51:02 -05:00
diagnostics: fix missing newline
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
parent
d00c1c7a1d
commit
00ee5cb4b1
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ void print_diagnostics(session_t *ps, const char *config_file, bool compositor_r
|
|||
printf("* XRandR: %s\n", ps->randr_exists ? "Yes" : "No");
|
||||
printf("* Present: %s\n", ps->present_exists ? "Present" : "Not Present");
|
||||
printf("\n### Misc:\n\n");
|
||||
printf("* Use Overlay: %s", ps->overlay != XCB_NONE ? "Yes" : "No");
|
||||
printf("* Use Overlay: %s\n", ps->overlay != XCB_NONE ? "Yes" : "No");
|
||||
if (ps->overlay == XCB_NONE) {
|
||||
if (compositor_running) {
|
||||
printf(" (Another compositor is already running)\n");
|
||||
|
|
Loading…
Reference in a new issue