diff options
author | 2018-11-12 14:18:03 +0100 | |
---|---|---|
committer | 2018-11-14 17:01:55 +0100 | |
commit | 13df9c398d60e441a65b11ada491f750947649bf (patch) | |
tree | ad1aed8e02e8ee9ca9abc54bb6defe3863b47ebc /src/machine | |
parent | localed: be more careful with the used types (diff) | |
download | systemd-13df9c398d60e441a65b11ada491f750947649bf.tar.gz systemd-13df9c398d60e441a65b11ada491f750947649bf.tar.bz2 systemd-13df9c398d60e441a65b11ada491f750947649bf.zip |
fileio: automatically add NULL sentinel to parse_env_file()
Let's modernize things a bit.
Diffstat (limited to 'src/machine')
-rw-r--r-- | src/machine/machine.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/machine/machine.c b/src/machine/machine.c index 75fa94252..e114541b3 100644 --- a/src/machine/machine.c +++ b/src/machine/machine.c @@ -261,8 +261,7 @@ int machine_load(Machine *m) { "CLASS", &class, "REALTIME", &realtime, "MONOTONIC", &monotonic, - "NETIF", &netif, - NULL); + "NETIF", &netif); if (r < 0) { if (r == -ENOENT) return 0; |