diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2024-07-06 15:28:56 +0200 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2024-07-06 15:29:19 +0200 |
commit | 6ff37b45dda5068d4f6e9ef772367de3dce884e0 (patch) | |
tree | e318e54b6acb87eac9298d3ed3c55b0c2d0fa05a /app-cdr/brasero/files | |
parent | net-misc/smb4k: Keyword 3.2.72 riscv, #934361 (diff) | |
download | gentoo-6ff37b45dda5068d4f6e9ef772367de3dce884e0.tar.gz gentoo-6ff37b45dda5068d4f6e9ef772367de3dce884e0.tar.bz2 gentoo-6ff37b45dda5068d4f6e9ef772367de3dce884e0.zip |
app-cdr/brasero: fixed incompatible pointers + sorted vars
Closes: https://bugs.gentoo.org/919078
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'app-cdr/brasero/files')
-rw-r--r-- | app-cdr/brasero/files/brasero-3.12.3-incompatible-pointers.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app-cdr/brasero/files/brasero-3.12.3-incompatible-pointers.patch b/app-cdr/brasero/files/brasero-3.12.3-incompatible-pointers.patch new file mode 100644 index 000000000000..edfdb8786cd9 --- /dev/null +++ b/app-cdr/brasero/files/brasero-3.12.3-incompatible-pointers.patch @@ -0,0 +1,22 @@ +--- a/libbrasero-burn/brasero-drive-properties.c ++++ b/libbrasero-burn/brasero-drive-properties.c +@@ -844,7 +844,7 @@ brasero_drive_properties_set_property (GObject *object, + /* NOTE: no need to unref a potential previous session since + * it's only set at construct time */ + session = g_value_get_object (value); +- priv->session = g_object_ref (session); ++ priv->session = (BraseroSessionCfg *)g_object_ref (session); + + brasero_drive_properties_update (BRASERO_DRIVE_PROPERTIES (object)); + priv->valid_sig = g_signal_connect (session, +--- a/libbrasero-utils/brasero-metadata.c ++++ b/libbrasero-utils/brasero-metadata.c +@@ -665,7 +665,7 @@ brasero_metadata_install_missing_plugins (BraseroMetadata *self) + + context = gst_install_plugins_context_new (); + gst_install_plugins_context_set_xid (context, brasero_metadata_get_xid (self)); +- status = gst_install_plugins_async ((gchar **) details->pdata, ++ status = gst_install_plugins_async ((const gchar * const *) details->pdata, + context, + brasero_metadata_install_plugins_result, + downloads); |