From 63fab7aaf443112feb6f5ddcab0fafe8b5911af9 Mon Sep 17 00:00:00 2001 From: Jose Antonio Ortega Ruiz Date: Wed, 21 May 2014 05:25:26 +0200 Subject: Avoiding format strings security warnings (cf. #8467) --- mixlib/mix.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mixlib/mix.c') diff --git a/mixlib/mix.c b/mixlib/mix.c index 2452cdf..0c992b1 100644 --- a/mixlib/mix.c +++ b/mixlib/mix.c @@ -1,7 +1,7 @@ /* -*-c-*- -------------- mix.c : * Implementation of the functions declared in mix.h * ------------------------------------------------------------------ - * Copyright (C) 2000, 2001, 2002, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. + * Copyright (C) 2000, 2001, 2002, 2005, 2006, 2007, 2008, 2009, 2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -53,7 +53,7 @@ mix_release_lib (void) } const char *MIX_GPL_LICENSE = -"Copyright (C) 2000-2009 Free Software Foundation, Inc.\n" +"Copyright (C) 2000-2014 Free Software Foundation, Inc.\n" "There is NO warranty. You may redistribute this software\n" "under the terms of the GNU General Public License.\n" "For more information about these matters, see the files named COPYING.\n"; @@ -62,7 +62,7 @@ void mix_print_license (const gchar *program) { fprintf (stderr, _("%s (GNU MDK %s)\n\n"), program, VERSION); - fprintf (stderr, MIX_GPL_LICENSE); + fprintf (stderr, "%s", MIX_GPL_LICENSE); } /* check dir, and create it if it doesn't exist */ -- cgit v1.2.3