journald: minor coding style updates

This commit is contained in:
Lennart Poettering 2019-11-25 12:50:36 +01:00
parent 4e00337b16
commit 4f60310373

View file

@ -76,11 +76,18 @@
#define DEFERRED_CLOSES_MAX (4096)
static int determine_path_usage(Server *s, const char *path, uint64_t *ret_used, uint64_t *ret_free) {
static int determine_path_usage(
Server *s,
const char *path,
uint64_t *ret_used,
uint64_t *ret_free) {
_cleanup_closedir_ DIR *d = NULL;
struct dirent *de;
struct statvfs ss;
assert(s);
assert(path);
assert(ret_used);
assert(ret_free);