diff options
author | zachir <zachir@librem.one> | 2022-08-05 20:16:53 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2022-08-05 20:16:53 -0500 |
commit | 239da0442b6382d779bfb0718f677ab866893528 (patch) | |
tree | cf2e35a9cd41f07409cc42e91f079451dee7f3a9 | |
parent | 6ff3590af0cdf188c48ce952b276f24557f56d12 (diff) |
drw: initialize ew to 0
-rw-r--r-- | drw.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -253,7 +253,7 @@ drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h, unsigned int lp { char buf[1024]; int ty; - unsigned int ew; + unsigned int ew=0; XftDraw *d = NULL; Fnt *usedfont, *curfont, *nextfont; size_t i, len; |