bus: drop redundant assignment

This assignment is already done in the parent context, no need to do it
again.
This commit is contained in:
David Herrmann
2015-03-11 16:29:18 +01:00
parent 16eb402488
commit 8b9972db83

View File

@@ -3489,8 +3489,6 @@ _public_ int sd_bus_message_read_basic(sd_bus_message *m, char type, void *p) {
return r;
} else {
rindex = m->rindex;
if (IN_SET(type, SD_BUS_TYPE_STRING, SD_BUS_TYPE_OBJECT_PATH)) {
uint32_t l;
bool ok;