summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2019-01-11 16:49:05 +0000
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2019-01-12 01:51:43 +0000
commit147d945600cb227d90f85724f5a3cb127b02b9e9 (patch)
treee836ec8c743bc7335278fb9c1ed75641314cbca0
parentc09ba2046472d8edcdb6a980054584a789d2e394 (diff)
downloadenlightenment-147d945600cb227d90f85724f5a3cb127b02b9e9.tar.gz
warn - make buffer bigger to avoid trunc warn
-rw-r--r--src/modules/sysinfo/thermal/thermal_fallback.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/sysinfo/thermal/thermal_fallback.c b/src/modules/sysinfo/thermal/thermal_fallback.c
index 56fee6e117..3ed6a89db2 100644
--- a/src/modules/sysinfo/thermal/thermal_fallback.c
+++ b/src/modules/sysinfo/thermal/thermal_fallback.c
@@ -11,7 +11,7 @@ temperature_get_bus_files(const char *bus)
{
Eina_List *result;
Eina_List *therms;
- char path[PATH_MAX];
+ char path[PATH_MAX + 3];
char busdir[PATH_MAX];
char *name;