diff options
Diffstat (limited to 'dev-python/pyid3lib/files/pyid3lib-0.5.1-gcc-4.4.patch')
-rw-r--r-- | dev-python/pyid3lib/files/pyid3lib-0.5.1-gcc-4.4.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/dev-python/pyid3lib/files/pyid3lib-0.5.1-gcc-4.4.patch b/dev-python/pyid3lib/files/pyid3lib-0.5.1-gcc-4.4.patch new file mode 100644 index 00000000000..04df9e0a6c9 --- /dev/null +++ b/dev-python/pyid3lib/files/pyid3lib-0.5.1-gcc-4.4.patch @@ -0,0 +1,20 @@ +--- pyid3lib.cc ++++ pyid3lib.cc +@@ -920,7 +920,7 @@ enum frame_type + + typedef struct + { +- char* name; ++ const char* name; + ID3_FrameID fid; + frame_type type; + } magic_attribute; +@@ -1030,7 +1030,7 @@ static PyObject* id3_getattr( ID3Object* self, char* attrname ) + { + ID3_Frame* frame; + const char* str; +- char* slash; ++ const char* slash; + ID3_Field* fld; + int i; + |