Commit 4b7a418e authored by Max Kellermann's avatar Max Kellermann

playlist/soundcloud: fix coding style

parent 73d917b7
......@@ -63,7 +63,8 @@ soundcloud_init(const config_param &param)
* @return Constructed URL. Must be freed with g_free.
*/
static char *
soundcloud_resolve(const char* uri) {
soundcloud_resolve(const char* uri)
{
char *u, *ru;
if (StringStartsWith(uri, "http://")) {
......@@ -109,7 +110,8 @@ struct parse_data {
std::forward_list<SongPointer> songs;
};
static int handle_integer(void *ctx,
static int
handle_integer(void *ctx,
long
#ifndef HAVE_YAJL1
long
......@@ -129,7 +131,8 @@ static int handle_integer(void *ctx,
return 1;
}
static int handle_string(void *ctx, const unsigned char* stringval,
static int
handle_string(void *ctx, const unsigned char* stringval,
#ifdef HAVE_YAJL1
unsigned int
#else
......@@ -159,7 +162,8 @@ static int handle_string(void *ctx, const unsigned char* stringval,
return 1;
}
static int handle_mapkey(void *ctx, const unsigned char* stringval,
static int
handle_mapkey(void *ctx, const unsigned char* stringval,
#ifdef HAVE_YAJL1
unsigned int
#else
......@@ -182,7 +186,8 @@ static int handle_mapkey(void *ctx, const unsigned char* stringval,
return 1;
}
static int handle_start_map(void *ctx)
static int
handle_start_map(void *ctx)
{
struct parse_data *data = (struct parse_data *) ctx;
......@@ -192,7 +197,8 @@ static int handle_start_map(void *ctx)
return 1;
}
static int handle_end_map(void *ctx)
static int
handle_end_map(void *ctx)
{
struct parse_data *data = (struct parse_data *) ctx;
......
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