---
 x.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/x.c b/x.c
index 9126e07..ed734e2 100644
--- a/x.c
+++ b/x.c
@@ -834,7 +834,7 @@ int
 xloadfont(Font *f, FcPattern *pattern)
 {
        FcPattern *configured;
-       FcPattern *match;
+       FcPattern *matchFound;
        FcResult result;
        XGlyphInfo extents;
        int wantattr, haveattr;
@@ -851,15 +851,15 @@ xloadfont(Font *f, FcPattern *pattern)
        FcConfigSubstitute(NULL, configured, FcMatchPattern);
        XftDefaultSubstitute(xw.dpy, xw.scr, configured);
 
-       match = FcFontMatch(NULL, configured, &result);
-       if (!match) {
+       matchFound = FcFontMatch(NULL, configured, &result);
+       if (!matchFound) {
                FcPatternDestroy(configured);
                return 1;
        }
 
-       if (!(f->match = XftFontOpenPattern(xw.dpy, match))) {
+       if (!(f->match = XftFontOpenPattern(xw.dpy, matchFound))) {
                FcPatternDestroy(configured);
-               FcPatternDestroy(match);
+               FcPatternDestroy(matchFound);
                return 1;
        }
 
-- 
2.20.1


Reply via email to