mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-07 04:34:03 -05:00
don't use empty struct initializers
This commit is contained in:
parent
ddef95c297
commit
dabdffafa5
7 changed files with 27 additions and 27 deletions
2
sixel.c
2
sixel.c
|
|
@ -231,7 +231,7 @@ sixel_overwrite(struct terminal *term, struct sixel *six,
|
|||
row, col, height, width,
|
||||
rel_above, rel_below, rel_left, rel_right);
|
||||
|
||||
struct sixel imgs[4] = {};
|
||||
struct sixel imgs[4] = {0};
|
||||
|
||||
if (rel_above > 0) {
|
||||
imgs[0] = (struct sixel){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue