sd-bus: correct spacing near eol in code comments

This commit is contained in:
Torstein Husebø
2014-12-10 20:00:05 +01:00
committed by David Herrmann
parent d076c6f9e4
commit ad67ef274e
4 changed files with 6 additions and 6 deletions

View File

@@ -234,7 +234,7 @@ static bool value_node_same(
/* Tests parameters against this value node, not doing prefix
* magic and stuff, i.e. this one actually compares the match
* itself.*/
* itself. */
assert(node);
assert(node->type == BUS_MATCH_VALUE);

View File

@@ -1350,7 +1350,7 @@ int message_append_basic(sd_bus_message *m, char type, const void *p, const void
} else {
char *e;
/* Maybe we can append to the signature? But only if this is the top-level container*/
/* Maybe we can append to the signature? But only if this is the top-level container */
if (c->enclosing != 0)
return -ENXIO;
@@ -1543,7 +1543,7 @@ _public_ int sd_bus_message_append_string_space(
} else {
char *e;
/* Maybe we can append to the signature? But only if this is the top-level container*/
/* Maybe we can append to the signature? But only if this is the top-level container */
if (c->enclosing != 0)
return -ENXIO;
@@ -2697,7 +2697,7 @@ _public_ int sd_bus_message_append_string_memfd(
} else {
char *e;
/* Maybe we can append to the signature? But only if this is the top-level container*/
/* Maybe we can append to the signature? But only if this is the top-level container */
if (c->enclosing != 0)
return -ENXIO;

View File

@@ -2713,7 +2713,7 @@ static int bus_poll(sd_bus *bus, bool need_more, uint64_t timeout_usec) {
if (need_more)
/* The caller really needs some more data, he doesn't
* care about what's already read, or any timeouts
* except its own.*/
* except its own. */
e |= POLLIN;
else {
usec_t until;

View File

@@ -140,7 +140,7 @@ static void test_marshal(void) {
if (r < 0)
exit(EXIT_TEST_SKIP);
bus->message_version = 2; /* dirty hack to enable gvariant*/
bus->message_version = 2; /* dirty hack to enable gvariant */
assert_se(sd_bus_message_new_method_call(bus, &m, "a.service.name", "/an/object/path/which/is/really/really/long/so/that/we/hit/the/eight/bit/boundary/by/quite/some/margin/to/test/this/stuff/that/it/really/works", "an.interface.name", "AMethodName") >= 0);