From: Matthias Bolte Date: Mon, 5 Apr 2010 23:38:53 +0000 (+0200) Subject: Fix compiler warning about non-literal format string X-Git-Tag: v0.8.0~89 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2e0bd1779ee1dc45597d59a5182ee76e2b463cf;p=thirdparty%2Flibvirt.git Fix compiler warning about non-literal format string --- diff --git a/src/security/security_apparmor.c b/src/security/security_apparmor.c index db04d5c188..8e1c794856 100644 --- a/src/security/security_apparmor.c +++ b/src/security/security_apparmor.c @@ -483,7 +483,7 @@ AppArmorSetSecurityProcessLabel(virSecurityDriverPtr drv, virDomainObjPtr vm) } if (aa_change_profile(profile_name) < 0) { - virSecurityReportError(VIR_ERR_INTERNAL_ERROR, + virSecurityReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("error calling aa_change_profile()")); goto clean; }