summaryrefslogtreecommitdiff
path: root/unix/cache.c
diff options
context:
space:
mode:
authorlouie <lshprung@yahoo.com>2021-12-10 15:26:13 -0800
committerlouie <lshprung@yahoo.com>2021-12-10 15:26:13 -0800
commita3d8a9508f3d0edfffc1ab5791bb29b0ae7a79c5 (patch)
treef546c0bf53e07fec255529c82c42148b1c9f0ae1 /unix/cache.c
parente58f35f4580ad4377c3ba5dcaee5bbbd938713c6 (diff)
Changed name. May tidy up/differentiate 'Terminal Media Launcher' vs 'terminal-media-launcher'
Diffstat (limited to 'unix/cache.c')
-rw-r--r--unix/cache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/cache.c b/unix/cache.c
index efd7cdf..e618602 100644
--- a/unix/cache.c
+++ b/unix/cache.c
@@ -25,11 +25,11 @@ char *get_cache_path(bool create){
sprintf(path, "%s%c.cache%c", home, sep, sep);
mkdir(path, 0755);
- sprintf(path, "%s%c.cache%ctml%c", home, sep, sep, sep);
+ sprintf(path, "%s%c.cache%cterminal-media-launcher%c", home, sep, sep, sep);
mkdir(path, 0755);
}
- sprintf(path, "%s%c.cache%ctml%cdata.bin", home, sep, sep, sep);
+ sprintf(path, "%s%c.cache%cterminal-media-launcher%cdata.bin", home, sep, sep, sep);
return path;
}