REST: Add missing return statement to dbusArgSplit
The function dbusArgSplit() was missing the return statement
at the end, which was causing a warning in the bitbake
compile logs.
The function apparently still worked fine without it, but
one wouldn't think it would just by looking at it.
Change-Id: Ifcd1f742de995eb19685d0ef37036860ebbf8b95
Signed-off-by: Matt Spinler <spinler@us.ibm.com>
diff --git a/include/openbmc_dbus_rest.hpp b/include/openbmc_dbus_rest.hpp
index da59d25..fb23a8b 100644
--- a/include/openbmc_dbus_rest.hpp
+++ b/include/openbmc_dbus_rest.hpp
@@ -467,6 +467,8 @@
break;
}
}
+
+ return ret;
}
int convertJsonToDbus(sd_bus_message *m, const std::string &arg_type,