[geany/geany-plugins] 7fa437: Merge pull request #816 from andy5995/fix_bstree_warning

Frank Lanitz git-noreply at xxxxx
Sat Jan 26 07:36:34 UTC 2019


Branch:      refs/heads/master
Author:      Frank Lanitz <frank at frank.uvena.de>
Committer:   GitHub <noreply at github.com>
Date:        Sat, 26 Jan 2019 07:36:34 UTC
Commit:      7fa4370d708b39c2cad59941883793e90de99803
             https://github.com/geany/geany-plugins/commit/7fa4370d708b39c2cad59941883793e90de99803

Log Message:
-----------
Merge pull request #816 from andy5995/fix_bstree_warning

debugger/bptree.c:fix compiler warning


Modified Paths:
--------------
    debugger/src/bptree.c

Modified: debugger/src/bptree.c
6 lines changed, 3 insertions(+), 3 deletions(-)
===================================================================
@@ -370,9 +370,9 @@ static void on_hitscount_changed(GtkCellRendererText *renderer, gchar *path, gch
 		LINE, &line,
         -1);
         
-    if (oldcount != count)
-    	breaks_set_hits_count(file, line, count);
-	
+	if (oldcount != count)
+		breaks_set_hits_count(file, line, count);
+
 	gtk_tree_path_free(tree_path);
 	g_free(file);
 }                                                        



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Plugins-Commits mailing list