diff options
| author | bakkeby <[email protected]> | 2020-08-24 00:26:26 +0200 |
|---|---|---|
| committer | bakkeby <[email protected]> | 2020-08-24 00:26:26 +0200 |
| commit | 7ce66bf122fd8b7288a5e0ddf0d0e312a0f08456 (patch) | |
| tree | a8f04c431b16013d8465d9e1324cea2ae1269436 /drw.c | |
| parent | 939a407e250059adedadce4b121fcf3fd3e429e3 (diff) | |
| download | dwm-flexipatch-7ce66bf122fd8b7288a5e0ddf0d0e312a0f08456.tar.gz dwm-flexipatch-7ce66bf122fd8b7288a5e0ddf0d0e312a0f08456.zip | |
Identified and fixed a few more cross-compilation issues related to prior refactoring / simplification
Diffstat (limited to 'drw.c')
| -rw-r--r-- | drw.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -618,11 +618,11 @@ drw_map(Drw *drw, Window win, int x, int y, unsigned int w, unsigned int h) } unsigned int -drw_fontset_getwidth(Drw *drw, const char *text, Bool ignored) +drw_fontset_getwidth(Drw *drw, const char *text, Bool markup) { if (!drw || !drw->fonts || !text) return 0; - return drw_text(drw, 0, 0, 0, 0, 0, text, 0, ignored); + return drw_text(drw, 0, 0, 0, 0, 0, text, 0, markup); } #if BAR_PANGO_PATCH |
