Avoid using GNU empty initializer extension

(cherry picked from commit ce7036d249)
This commit is contained in:
Christian Göttsche 2020-04-07 21:46:53 +02:00 committed by Yorhel
parent 70f439d9a9
commit 2bd83b3f22

View file

@ -112,7 +112,7 @@ static void draw_progress(void) {
static const char loadtext[] = "Loading...";
static size_t anpos = 0;
const char *antext = dir_import_active ? loadtext : scantext;
char ani[16] = {};
char ani[16] = {0};
size_t i;
int width = wincols-5;