diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-06-17 03:25:02 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-06-17 03:26:40 +0200 |
commit | 489388fbc0be89e2b978258d277b5ff2da573174 (patch) | |
tree | ae22b8d4fbf776dce07a5c45688693eaacedaced /src/core/main.c | |
parent | c47fc1f025dd4b4c22d4650385748dc8486df0b6 (diff) |
machine-id-setup: allow passing NULL as function argument, for simplicity
Diffstat (limited to 'src/core/main.c')
-rw-r--r-- | src/core/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/main.c b/src/core/main.c index 899233bf51..82852d6401 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -1592,7 +1592,7 @@ int main(int argc, char *argv[]) { kmod_setup(); #endif hostname_setup(); - machine_id_setup(""); + machine_id_setup(NULL); loopback_setup(); test_mtab(); |