From a0b770e70ecd992d0179621b7b1873af06237a87 Mon Sep 17 00:00:00 2001 From: altffour Date: Mon, 25 Jan 2021 09:35:54 +0300 Subject: [PATCH] xdg-suport: fix clang --- src/fe-common/core/themes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe-common/core/themes.c b/src/fe-common/core/themes.c index cfd17968..f42411b9 100644 --- a/src/fe-common/core/themes.c +++ b/src/fe-common/core/themes.c @@ -922,7 +922,7 @@ THEME_REC *theme_load(const char *setname) struct stat statbuf; char *fname, *fbname, *name, *p; - name = g_strdup(setname); + name = g_strdup(setname); p = strrchr(name, '.'); if (p != NULL && g_strcmp0(p, ".theme") == 0) { /* remove the trailing .theme */