commit 15ec1b4cf2da28d9e5f13291c3984abb460fa7e6
parent 4f30dd013c9bcb3a23d351e5d388433c76439560
Author: Christian Grothoff <christian@grothoff.org>
Date: Tue, 28 Jun 2022 20:21:07 +0200
-fix compiler warning
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/anastasis/anastasis-gtk_action.c b/src/anastasis/anastasis-gtk_action.c
@@ -2508,7 +2508,8 @@ add_policy (GtkBox *policy_box,
"Failed to process challenge #%u of policy #%u",
(unsigned int) (1 + index),
(unsigned int) (1 + pindex));
- AG_error (txt);
+ AG_error ("%s",
+ txt);
GNUNET_free (txt);
return false;
}