diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-08-06 00:32:25 +0200 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-08-06 00:49:45 +0200 |
commit | 756775814cf69471f74ce853745bba69f2ba94ef (patch) | |
tree | 0cd99890a1cce0671f07761d077db96ee1f43f79 /src/libsystemd-network/sd-ipv4ll.c | |
parent | 511d2ffc8cc4e6c6b528aa96c4096f57bc52226e (diff) |
tree-wide: do not return error codes as bool
Diffstat (limited to 'src/libsystemd-network/sd-ipv4ll.c')
-rw-r--r-- | src/libsystemd-network/sd-ipv4ll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsystemd-network/sd-ipv4ll.c b/src/libsystemd-network/sd-ipv4ll.c index 0cb77ccf71..f080c5c0a7 100644 --- a/src/libsystemd-network/sd-ipv4ll.c +++ b/src/libsystemd-network/sd-ipv4ll.c @@ -507,7 +507,7 @@ error: } bool sd_ipv4ll_is_running(sd_ipv4ll *ll) { - assert_return(ll, -EINVAL); + assert_return(ll, false); return !IN_SET(ll->state, IPV4LL_STATE_INIT, IPV4LL_STATE_STOPPED); } |