Skip to content

Commit 86067eb

Browse files
committed
patch 8.0.0770: compiler warning for missing field initializer
Problem: Compiler warning for missing field initializer. Solution: Add two more values. (Yegappan Lakshmanan)
1 parent 8a77306 commit 86067eb

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/libvterm/src/encoding.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ encodings[] = {
218218
{ ENC_SINGLE_94, '0', (VTermEncoding*)&encoding_DECdrawing },
219219
{ ENC_SINGLE_94, 'A', (VTermEncoding*)&encoding_uk },
220220
{ ENC_SINGLE_94, 'B', &encoding_usascii },
221-
{ 0 },
221+
{ 0, 0, NULL },
222222
};
223223

224224
/* This ought to be INTERNAL but isn't because it's used by unit testing */

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,8 @@ static char *(features[]) =
769769

770770
static int included_patches[] =
771771
{ /* Add new patch number below this line */
772+
/**/
773+
770,
772774
/**/
773775
769,
774776
/**/

0 commit comments

Comments
 (0)