Remove unused parameter fieldname in json_add_log(..., const char *fieldname, ...)

This commit is contained in:
practicalswift
2018-02-21 16:53:24 +01:00
committed by Christian Decker
parent 2ab274595e
commit d873bf60bf
4 changed files with 5 additions and 5 deletions

View File

@@ -656,7 +656,7 @@ static void log_to_json(unsigned int skipped,
json_object_end(info->response);
}
void json_add_log(struct json_result *response, const char *fieldname,
void json_add_log(struct json_result *response,
const struct log_book *lr, enum log_level minlevel)
{
struct log_info info;
@@ -712,7 +712,7 @@ static void json_getlog(struct command *cmd,
json_add_time(response, "created_at", log_init_time(lr)->ts);
json_add_num(response, "bytes_used", (unsigned int)log_used(lr));
json_add_num(response, "bytes_max", (unsigned int)log_max_mem(lr));
json_add_log(response, "log", lr, minlevel);
json_add_log(response, lr, minlevel);
json_object_end(response);
command_success(cmd, response);
}