shout2: use gint and guint in place of int and uint

this fixes a compilation error with gcc 7.1.0 on mys2 where uint is not defined

https://bugzilla.gnome.org/show_bug.cgi?id=784758
This commit is contained in:
Philippe Renon 2017-07-10 18:57:11 +02:00 committed by Sebastian Dröge
parent c7f42cc3bc
commit c8204780b2

View file

@ -66,8 +66,8 @@ struct _GstShout2send {
gchar *songmetadata;
gchar *songartist;
gchar *songtitle;
int format;
uint timeout;
gint format;
guint timeout;
GstTagList* tags;
};