Commit 8c0680f6 authored by Max Kellermann's avatar Max Kellermann

input/lastfm: fixed variable name in GLib<2.16 code path

Should be "lastfm_user", not "lastfm_username".
parent b242175e
ver 0.15.6 (2009/??/??)
* input:
- lastfm: fixed variable name in GLib<2.16 code path
* decoders:
- ffmpeg: convert metadata
* output_thread: check again if output is open on PAUSE
......
......@@ -112,7 +112,7 @@ lastfm_input_open(struct input_stream *is, const char *url)
#if GLIB_CHECK_VERSION(2,16,0)
q = g_uri_escape_string(lastfm_user, NULL, false);
#else
q = g_strdup(lastfm_username);
q = g_strdup(lastfm_user);
#endif
#if GLIB_CHECK_VERSION(2,16,0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment