mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-12 17:08:39 -09:00
Avoid using GNU empty initializer extension
This commit is contained in:
parent
2a433cb00d
commit
ce7036d249
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue