Description: fix build break with -Werror=format-security
Bug: b-g-o #661091
Index: brasero-3.2.0/plugins/libburnia/burn-libisofs.c
===================================================================
--- brasero-3.2.0.orig/plugins/libburnia/burn-libisofs.c	2011-09-27 05:19:01.000000000 -0400
+++ brasero-3.2.0/plugins/libburnia/burn-libisofs.c	2011-10-06 10:29:43.694973360 -0400
@@ -219,7 +219,7 @@
 	if (read_bytes == -1 && !priv->error)
 		priv->error = g_error_new (BRASERO_BURN_ERROR,
 					   BRASERO_BURN_ERROR_GENERAL,
-					   _("Volume could not be created"));
+					   "%s", _("Volume could not be created"));
 }
 
 static void
@@ -567,7 +567,7 @@
 	brasero_job_get_data_label (BRASERO_JOB (self), &label);
 	if (!iso_image_new (label, &image)) {
 		priv->error = g_error_new (BRASERO_BURN_ERROR,
-					   BRASERO_BURN_ERROR_GENERAL,
+					   BRASERO_BURN_ERROR_GENERAL, "%s",
 					   _("Volume could not be created"));
 		g_free (label);
 		goto end;
Index: brasero-3.2.0/plugins/transcode/burn-transcode.c
===================================================================
--- brasero-3.2.0.orig/plugins/transcode/burn-transcode.c	2011-09-27 05:19:01.000000000 -0400
+++ brasero-3.2.0/plugins/transcode/burn-transcode.c	2011-10-06 10:31:02.189967994 -0400
@@ -1346,7 +1346,7 @@
 	if (duration == -1 || duration == 0)	
 	    brasero_job_error (BRASERO_JOB (transcode),
 			       g_error_new (BRASERO_BURN_ERROR,
-					    BRASERO_BURN_ERROR_GENERAL,
+					    BRASERO_BURN_ERROR_GENERAL, "%s",
 					    _("Error while getting duration")));
 	return duration;
 }
