This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository enlightenment.

View the commit online.

commit 7f2b3a2bd735fdeb4fd006f69f3a3b43c0a6021f
Author: Alastair Poole <[email protected]>
AuthorDate: Fri Mar 20 03:59:47 2026 +0000

    procstats: improve string spacing when formatting.
---
 src/modules/procstats/e_mod_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/modules/procstats/e_mod_main.c b/src/modules/procstats/e_mod_main.c
index 029050b15..73521cce6 100644
--- a/src/modules/procstats/e_mod_main.c
+++ b/src/modules/procstats/e_mod_main.c
@@ -437,7 +437,7 @@ _size_format(unsigned long long bytes)
         if ((value / powi) < powj) break;
         --precision;
      }
-   snprintf(buf, sizeof(buf), "%1.*f%s", precision, (double) value / powi, units[i]);
+   snprintf(buf, sizeof(buf), "%1.*f %s", precision, (double) value / powi, units[i]);
 
    return strdup(buf);
 }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to