diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-05-21 23:30:37 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-05-21 23:30:37 +0200 |
commit | dde8bb32b12c855509777ce52ff59a835155ac78 (patch) | |
tree | 7d964ece0fb7a14155eeb36874c3fc3da71d0632 /src/libsystemd-network/sd-dhcp-lease.c | |
parent | 85dbc30747023db0fdb95dfe48fad6102c726fc2 (diff) |
json: minor style fixessystemd/v220
Diffstat (limited to 'src/libsystemd-network/sd-dhcp-lease.c')
-rw-r--r-- | src/libsystemd-network/sd-dhcp-lease.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsystemd-network/sd-dhcp-lease.c b/src/libsystemd-network/sd-dhcp-lease.c index 4b8763aab0..8a4220621b 100644 --- a/src/libsystemd-network/sd-dhcp-lease.c +++ b/src/libsystemd-network/sd-dhcp-lease.c @@ -672,7 +672,7 @@ int sd_dhcp_lease_save(sd_dhcp_lease *lease, const char *lease_file) { if (r >= 0) { _cleanup_free_ char *client_id_hex; - client_id_hex = hexmem (client_id, client_id_len); + client_id_hex = hexmem(client_id, client_id_len); if (!client_id_hex) { r = -ENOMEM; goto finish; |