Branch: refs/heads/master Author: Khem Raj raj.khem@gmail.com Committer: Khem Raj raj.khem@gmail.com Date: Sun, 04 Sep 2022 17:01:17 UTC Commit: 0a4e3146cc97517ae09c1d854973ca26e46af33b https://github.com/geany/geany-plugins/commit/0a4e3146cc97517ae09c1d854973ca...
Log Message: ----------- scope: Use FALSE instead of NULL for gboolean
Fixes warnings with clang 15+
scope/src/stack.c:168:11: error: incompatible pointer to integer conversion initializing 'gboolean' (aka 'int') with an expression of type 'void *' [-Wint-conversion] gboolean entry = NULL; ^ ~~~~ 1 error generated.
Signed-off-by: Khem Raj raj.khem@gmail.com
Modified Paths: -------------- scope/src/stack.c
Modified: scope/src/stack.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -165,7 +165,7 @@ void on_stack_follow(GArray *nodes) gboolean stack_entry(void) { GtkTreeIter iter; - gboolean entry = NULL; + gboolean entry = FALSE;
if (gtk_tree_selection_get_selected(selection, NULL, &iter)) {
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).