summaryrefslogtreecommitdiff
path: root/src/xftinit.c
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2022-05-29 18:05:10 -0400
committerThomas E. Dickey <dickey@invisible-island.net>2022-06-03 15:51:07 -0400
commitef896b2106fa171707a4087be506259f578ff3a5 (patch)
tree073dd6d0e50495172cdd66953cb0aef68c6c95d6 /src/xftinit.c
parent768f43c04b5587d3b49ccd2d2f0133630c6a093b (diff)
downloadxorg-lib-libXft-ef896b2106fa171707a4087be506259f578ff3a5.tar.gz
fix missing-initializer warning
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
Diffstat (limited to 'src/xftinit.c')
-rw-r--r--src/xftinit.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xftinit.c b/src/xftinit.c
index 99b1547..46196ab 100644
--- a/src/xftinit.c
+++ b/src/xftinit.c
@@ -48,10 +48,10 @@ static struct {
int free_count;
int free_mem;
} XftInUse[XFT_MEM_NUM] = {
- { "XftDraw", 0, 0 },
- { "XftFont", 0 ,0 },
- { "XftFtFile", 0, 0 },
- { "XftGlyph", 0, 0 },
+ { "XftDraw", 0, 0, 0, 0 },
+ { "XftFont", 0, 0, 0, 0 },
+ { "XftFtFile", 0, 0, 0, 0 },
+ { "XftGlyph", 0, 0, 0, 0 },
};
static int XftAllocCount, XftAllocMem;