diff options
author | Michael Forney <mforney@mforney.org> | 2019-08-11 04:50:32 (GMT) |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2019-08-16 05:42:03 (GMT) |
commit | f69755ae53bd9501d6af2e0206b2e9e17a2d20f2 (patch) | |
tree | 1c6cc6868285c6e4511e06ac43a95ecbdf4a51d3 /lib/object.c | |
parent | de72910e6b3ec4503f23538682a89c4d444c7a92 (diff) | |
download | libnl-f69755ae53bd9501d6af2e0206b2e9e17a2d20f2.zip libnl-f69755ae53bd9501d6af2e0206b2e9e17a2d20f2.tar.gz libnl-f69755ae53bd9501d6af2e0206b2e9e17a2d20f2.tar.bz2 |
lib: Don't return expression in function returning void
Diffstat (limited to 'lib/object.c')
-rw-r--r-- | lib/object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/object.c b/lib/object.c index 7ba7465..4e14554 100644 --- a/lib/object.c +++ b/lib/object.c @@ -301,7 +301,7 @@ void nl_object_dump_buf(struct nl_object *obj, char *buf, size_t len) .dp_buflen = len, }; - return nl_object_dump(obj, &dp); + nl_object_dump(obj, &dp); } /** |