From 4343c4067e842b91e227ca747cdd4fdef1c7b81c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 25 Feb 2020 20:33:19 +0530 Subject: [PATCH] Make clang happy --- kitty/screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/screen.c b/kitty/screen.c index 95659c1da..7cdbf90a2 100644 --- a/kitty/screen.c +++ b/kitty/screen.c @@ -26,7 +26,7 @@ #include "charsets.h" static const ScreenModes empty_modes = {0, .mDECAWM=true, .mDECTCEM=true, .mDECARM=true}; -static Selection EMPTY_SELECTION = {0}; +static Selection EMPTY_SELECTION = {{0}}; // Constructor/destructor {{{