diff options
author | Philippe Renon <philippe_renon@yahoo.fr> | 2017-07-10 18:57:11 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2017-07-11 09:26:35 +0300 |
commit | c8204780b26207f0374fd2699d30435a0fe2b79d (patch) | |
tree | 415b479c7ae279c0b9b71b6344425c2aba1cf81f /ext | |
parent | c7f42cc3bc192ef0122b68d95cb24e187b975623 (diff) |
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
Diffstat (limited to 'ext')
-rw-r--r-- | ext/shout2/gstshout2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/shout2/gstshout2.h b/ext/shout2/gstshout2.h index eaed730d5..408716692 100644 --- a/ext/shout2/gstshout2.h +++ b/ext/shout2/gstshout2.h @@ -66,8 +66,8 @@ struct _GstShout2send { gchar *songmetadata; gchar *songartist; gchar *songtitle; - int format; - uint timeout; + gint format; + guint timeout; GstTagList* tags; }; |