Skip to content
Snippets Groups Projects
Commit 2bd83b3f authored by Christian Göttsche's avatar Christian Göttsche Committed by Yorhel
Browse files

Avoid using GNU empty initializer extension

(cherry picked from commit ce7036d249b6f05633c343ab95d88552aab85402)
parent 70f439d9
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment