[Xfce4-commits] [xfce/xfce4-appfinder] 03/03: Replace strcmp by g_strcmp0

noreply at xfce.org noreply at xfce.org
Sat Aug 18 23:58:46 CEST 2018


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

a   n   d   r   e       p   u   s   h   e   d       a       c   o   m   m   i   t       t   o       b   r   a   n   c   h       m   a   s   t   e   r   
   in repository xfce/xfce4-appfinder.

commit 1e9c81751eba06e152a390ef25dba66cf58424ad
Author: Andre Miranda <andreldm at xfce.org>
Date:   Sat Aug 18 17:12:50 2018 -0300

    Replace strcmp by g_strcmp0
---
 src/appfinder-window.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/appfinder-window.c b/src/appfinder-window.c
index cf8af4b..b86903b 100644
--- a/src/appfinder-window.c
+++ b/src/appfinder-window.c
@@ -1955,7 +1955,7 @@ xfce_appfinder_window_sort_items (GtkTreeModel *model,
   title_b = g_utf8_casefold (normalized, -1);
   g_free (normalized);
 
-  if (strcmp (casefold, "") == 0)
+  if (g_strcmp0 (casefold, "") == 0)
     result = g_strcmp0 (title_a, title_b);
   else
     {

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


More information about the Xfce4-commits mailing list