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