[libdmapsharing] Fix mismatched DMAPMetaDataMap struct typedef



commit dc2f29bb515334cdeb921ddf680163357816a15c
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 b88eb3d..e96ec09 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]