mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 02:15:31 +00:00
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:
parent
c7f42cc3bc
commit
c8204780b2
1 changed files with 2 additions and 2 deletions
|
@ -66,8 +66,8 @@ struct _GstShout2send {
|
||||||
gchar *songmetadata;
|
gchar *songmetadata;
|
||||||
gchar *songartist;
|
gchar *songartist;
|
||||||
gchar *songtitle;
|
gchar *songtitle;
|
||||||
int format;
|
gint format;
|
||||||
uint timeout;
|
guint timeout;
|
||||||
|
|
||||||
GstTagList* tags;
|
GstTagList* tags;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue