[libdmapsharing/gobject-introspection] Fix mismatched DMAPMetaDataMap struct typedef
- From: W. Michael Petullo <wmpetullo src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libdmapsharing/gobject-introspection] Fix mismatched DMAPMetaDataMap struct typedef
- Date: Tue, 5 Aug 2014 19:20:27 +0000 (UTC)
commit 97301599fde35f51d22bcf5169673d1dff30cadf
Author: W. Michael Petullo <mike flyn org>
Date: Tue Aug 5 15:17:38 2014 -0400
Fix mismatched DMAPMetaDataMap struct typedef
A mismatched struct typedef in dmap-share.h confuses GObject introspection
into producing an error when the original struct is defined. The typedef
of DMAPMetaDataMap asks for struct _DMAPMetaDataMap, but the actual
struct definition says struct DMAPMetaDataMap. gir will complain about
namespace conflicts and abort a jhbuild build as a result.
Thanks to Pietro Gagliardi and gregier in irc.gimp.net/#gtk+ who helped
Pietro.
Signed-off-by: W. Michael Petullo <mike flyn org>
libdmapsharing/dmap-share.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/libdmapsharing/dmap-share.h b/libdmapsharing/dmap-share.h
index e0a5448..2252762 100644
--- a/libdmapsharing/dmap-share.h
+++ b/libdmapsharing/dmap-share.h
@@ -96,7 +96,7 @@ typedef struct
DMAPSharePrivate *priv;
} DMAPShare;
-typedef struct _DMAPMetaDataMap DMAPMetaDataMap;
+typedef struct DMAPMetaDataMap DMAPMetaDataMap;
typedef struct
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]