geany-plugins: Fix int conversion

%ci:no-build
This commit is contained in:
termux-pacman-bot
2023-04-12 15:01:30 +00:00
parent 338e206652
commit f736fb6f65
2 changed files with 11 additions and 1 deletions

View File

@@ -6,4 +6,3 @@ TERMUX_PKG_VERSION=1.38
TERMUX_PKG_SRCURL=https://plugins.geany.org/geany-plugins/geany-plugins-$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=44dedf70605220d6e4094703a85c5f5a224c150cb1538b6b7f908b403b1bcc1b
TERMUX_PKG_DEPENDS="geany"
TERMUX_PKG_ENABLE_CLANG16_PORTING=false

View File

@@ -0,0 +1,11 @@
--- a/scope/src/stack.c
+++ b/scope/src/stack.c
@@ -165,7 +165,7 @@
gboolean stack_entry(void)
{
GtkTreeIter iter;
- gboolean entry = NULL;
+ gboolean entry = FALSE;
if (gtk_tree_selection_get_selected(selection, NULL, &iter))
{