mirror of
https://github.com/systemd/systemd.git
synced 2026-08-03 06:30:30 +00:00
sd-bus: correct spacing near eol in code comments
This commit is contained in:
committed by
David Herrmann
parent
d076c6f9e4
commit
ad67ef274e
@@ -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);
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user