playlist/soundcloud: fix coding style

This commit is contained in:
Max Kellermann 2013-12-14 22:09:27 +01:00
parent 73d917b76e
commit 4b7a418e28

View File

@ -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;