Mageia Bugzilla – Attachment 13775 Details for
Bug 31819
Guayadeque a new version 4.7 exists
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
New Account
|
Forgot Password
0001-Fix-compilation-error-with-gcc13-in-taginfo.patch needed to build inside the BS
0001-Fix-compilation-error-with-gcc13-in-taginfo.patch (text/plain), 745 bytes, created by
Philippe Didier
on 2023-04-22 14:23:59 CEST
(
hide
)
Description:
0001-Fix-compilation-error-with-gcc13-in-taginfo.patch needed to build inside the BS
Filename:
MIME Type:
Creator:
Philippe Didier
Created:
2023-04-22 14:23:59 CEST
Size:
745 bytes
patch
obsolete
>From 8a0c382ed56c71f7b25207b1d24abee99eb1577f Mon Sep 17 00:00:00 2001 >From: Juan Rios <anonbeat@gmail.com> >Date: Fri, 24 Feb 2023 15:41:29 +0000 >Subject: [PATCH] Fix compilation error with gcc13 in taginfo > >--- > src/taginfo/TagInfo.cpp | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/src/taginfo/TagInfo.cpp b/src/taginfo/TagInfo.cpp >index 1c3779b0..e824174e 100644 >--- a/src/taginfo/TagInfo.cpp >+++ b/src/taginfo/TagInfo.cpp >@@ -2530,7 +2530,7 @@ bool guGStreamerTagInfo::ReadGStreamerTags( const wxString &filename ) > gchar *uri; > if( gst_uri_is_valid ( filename.c_str() ) ) > { >- uri = g_strdup( filename.c_str() ); >+ uri = g_strdup( ( const gchar * ) filename.c_str() ); > } > else > {
From 8a0c382ed56c71f7b25207b1d24abee99eb1577f Mon Sep 17 00:00:00 2001 From: Juan Rios <anonbeat@gmail.com> Date: Fri, 24 Feb 2023 15:41:29 +0000 Subject: [PATCH] Fix compilation error with gcc13 in taginfo --- src/taginfo/TagInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/taginfo/TagInfo.cpp b/src/taginfo/TagInfo.cpp index 1c3779b0..e824174e 100644 --- a/src/taginfo/TagInfo.cpp +++ b/src/taginfo/TagInfo.cpp @@ -2530,7 +2530,7 @@ bool guGStreamerTagInfo::ReadGStreamerTags( const wxString &filename ) gchar *uri; if( gst_uri_is_valid ( filename.c_str() ) ) { - uri = g_strdup( filename.c_str() ); + uri = g_strdup( ( const gchar * ) filename.c_str() ); } else {
View Attachment As Raw
Actions:
View
Attachments on
bug 31819
:
13770
|
13773
| 13775