summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-11-01 22:47:08 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-11-01 22:47:08 (GMT)
commit565c3f494b51715cf67575fc5951c6103049f29d (patch)
treeaa0c603deb50626761157cdfc77ca858338c7816
parent51e0be89c8f94ddc1bb023a4fb7ce4161e42df98 (diff)
Always set a string literal as string format to please -Wformat-security.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@602 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
-rw-r--r--ChangeLog6
-rw-r--r--src/glibext/gbufferline.c2
-rw-r--r--src/gtkext/easygtk.c2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 6b748c9..df3c77c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+15-11-01 Cyrille Bagard <nocbos@gmail.com>
+
+ * src/glibext/gbufferline.c:
+ * src/gtkext/easygtk.c:
+ Always set a string literal as string format to please -Wformat-security.
+
15-10-27 Cyrille Bagard <nocbos@gmail.com>
* tools/gendocs/exporter.py:
diff --git a/src/glibext/gbufferline.c b/src/glibext/gbufferline.c
index 859b6ac..7768a0e 100644
--- a/src/glibext/gbufferline.c
+++ b/src/glibext/gbufferline.c
@@ -1356,7 +1356,7 @@ void g_buffer_line_export(GBufferLine *line, buffer_export_context *ctx, BufferE
switch (type)
{
case BET_TEXT:
- if (i > 0) dprintf(ctx->fd, ctx->sep);
+ if (i > 0) dprintf(ctx->fd, "%s", ctx->sep);
break;
default:
break;
diff --git a/src/gtkext/easygtk.c b/src/gtkext/easygtk.c
index 27377b9..5348265 100644
--- a/src/gtkext/easygtk.c
+++ b/src/gtkext/easygtk.c
@@ -1139,7 +1139,7 @@ gint qck_show_question(GtkWindow *parent, const char *title, const char *questio
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_QUESTION,
GTK_BUTTONS_YES_NO,
- question);
+ "%s", question);
gtk_window_set_title(GTK_WINDOW(dialog), title);