xsel

Program for manipulating the X clipboard
git clone https://git.sinitax.com/kfish/xsel
Log | Files | Refs | README | LICENSE | sfeed.txt

commit a7f85c0f805957fef7f947223529a8641599d5be
parent 7c07370d643696de3b354f11fe2e56131c1f2cb5
Author: valeth <patrick.auernig@gmail.com>
Date:   Sat, 21 Nov 2015 12:25:06 +0100

add missing semicolon

Diffstat:
Mxsel.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xsel.c b/xsel.c @@ -347,7 +347,7 @@ get_xdg_cache_home (void) if ((cachedir = getenv ("XDG_CACHE_HOME")) != NULL) { return cachedir; } else { - return strcat(getenv ("HOME"), "/.cache") + return strcat(getenv ("HOME"), "/.cache"); } }