From f736fb6f652d84aab0066412cdbedf98157054df Mon Sep 17 00:00:00 2001 From: termux-pacman-bot Date: Wed, 12 Apr 2023 15:01:30 +0000 Subject: [PATCH] geany-plugins: Fix int conversion %ci:no-build --- x11-packages/geany-plugins/build.sh | 1 - x11-packages/geany-plugins/scope-src-stack.c.patch | 11 +++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 x11-packages/geany-plugins/scope-src-stack.c.patch diff --git a/x11-packages/geany-plugins/build.sh b/x11-packages/geany-plugins/build.sh index a9e433230c..a53394ec70 100644 --- a/x11-packages/geany-plugins/build.sh +++ b/x11-packages/geany-plugins/build.sh @@ -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 diff --git a/x11-packages/geany-plugins/scope-src-stack.c.patch b/x11-packages/geany-plugins/scope-src-stack.c.patch new file mode 100644 index 0000000000..87d57392d4 --- /dev/null +++ b/x11-packages/geany-plugins/scope-src-stack.c.patch @@ -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)) + {