mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-28 01:40:17 -05:00
misc: replace all explicit zero-initializers with empty initializers
This commit is contained in:
parent
d67f437458
commit
c96a0b3b3c
5 changed files with 15 additions and 15 deletions
2
search.c
2
search.c
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue