misc: replace all explicit zero-initializers with empty initializers

This commit is contained in:
Daniel Eklöf 2020-04-13 12:03:11 +02:00
parent d67f437458
commit c96a0b3b3c
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
5 changed files with 15 additions and 15 deletions

View file

@ -598,7 +598,7 @@ search_input(struct terminal *term, uint32_t key, xkb_keysym_t sym,
}
}
uint8_t buf[64] = {0};
uint8_t buf[64] = {};
int count = 0;
if (compose_status == XKB_COMPOSE_COMPOSED) {