diff options
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | src/glibext/gbufferline.c | 2 | ||||
| -rw-r--r-- | src/gtkext/easygtk.c | 2 | 
3 files changed, 8 insertions, 2 deletions
| @@ -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); | 
