cgroup-util: minor coding style adjustment

This commit is contained in:
Lennart Poettering 2017-09-04 18:18:04 +02:00
parent 18f573aaf9
commit 8b238b13b1
1 changed files with 6 additions and 3 deletions

View File

@ -103,9 +103,12 @@ int cg_read_pid(FILE *f, pid_t *_pid) {
return 1;
}
int cg_read_event(const char *controller, const char *path, const char *event,
char **val)
{
int cg_read_event(
const char *controller,
const char *path,
const char *event,
char **val) {
_cleanup_free_ char *events = NULL, *content = NULL;
char *p, *line;
int r;