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

landry pushed a 
commit to branch 
master
in repository apps/xfce4-taskmanager.

commit 203514ff9689c998949fcc38b81fec017a6415ba
Author: Landry Breuil <lan...@xfce.org>
Date:   Mon Dec 10 07:59:16 2018 +0100

    add proper casts around gsize calculation
---
 src/task-manager.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/task-manager.c b/src/task-manager.c
index 025125d..6d3b09a 100644
--- a/src/task-manager.c
+++ b/src/task-manager.c
@@ -172,7 +172,7 @@ pretty_cmdline (gchar *cmdline, gchar *comm)
                        gchar *p = g_strstr_len (text, (gssize)text_size, comm);
                        if (p != NULL)
                        {
-                               memmove (text, p, (text_size - (p - text)));
+                               memmove (text, p, (gsize)(text_size - (gsize)(p 
- text)));
                        }
                }
        }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to