diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-09-03 01:12:07 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-09-03 01:12:07 +0200 |
commit | bf1c25bbc4c8f3f82fd8fb74318f512696e25969 (patch) | |
tree | 7b5226271272c00c9d1b1aab17332328fe47c7c9 | |
parent | c069f477792bf78385ebdcaf1dc37ae57e0e8c88 (diff) | |
parent | b3c5bad3d6b71c11fe107699ee7b5d1aee112ad1 (diff) |
Merge pull request #1126 from phomes/indentation2
tree-wide: fix indentation
-rw-r--r-- | src/basic/cgroup-util.c | 2 | ||||
-rw-r--r-- | src/core/cgroup.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/basic/cgroup-util.c b/src/basic/cgroup-util.c index 218de0b376..4fcff87dfa 100644 --- a/src/basic/cgroup-util.c +++ b/src/basic/cgroup-util.c @@ -1913,7 +1913,7 @@ int cg_attach_many_everywhere(CGroupMask supported, const char *path, Set* pids, } int cg_migrate_everywhere(CGroupMask supported, const char *from, const char *to, cg_migrate_callback_t to_callback, void *userdata) { - CGroupController c; + CGroupController c; int r, unified; if (!path_equal(from, to)) { diff --git a/src/core/cgroup.c b/src/core/cgroup.c index a70b4d33ae..1e78f871c7 100644 --- a/src/core/cgroup.c +++ b/src/core/cgroup.c @@ -1076,7 +1076,7 @@ int unit_search_main_pid(Unit *u, pid_t *ret) { } static int unit_watch_pids_in_path(Unit *u, const char *path) { - _cleanup_closedir_ DIR *d = NULL; + _cleanup_closedir_ DIR *d = NULL; _cleanup_fclose_ FILE *f = NULL; int ret = 0, r; |