diff options
author | Alcaro <floating@muncher.se> | 2019-11-07 14:19:18 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-11-07 15:35:41 +0100 |
commit | 72a68f9d6d4e1caa8ec21f5b223ce2211f010f4b (patch) | |
tree | 53a4971fbecfb905bc48a7bb9e3da627cd66050c /man/sd_bus_new.xml | |
parent | include missing_fcntl.h where needed (diff) | |
download | systemd-72a68f9d6d4e1caa8ec21f5b223ce2211f010f4b.tar.xz systemd-72a68f9d6d4e1caa8ec21f5b223ce2211f010f4b.zip |
doc: Fix missing parenthesis
Diffstat (limited to 'man/sd_bus_new.xml')
-rw-r--r-- | man/sd_bus_new.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man/sd_bus_new.xml b/man/sd_bus_new.xml index 8506ee87e4..7771a78d8b 100644 --- a/man/sd_bus_new.xml +++ b/man/sd_bus_new.xml @@ -117,7 +117,7 @@ block is left:</para> <programlisting>{ - __attribute__((cleanup(sd_bus_unrefp)) sd_bus *bus = NULL; + __attribute__((cleanup(sd_bus_unrefp))) sd_bus *bus = NULL; int r; … r = sd_bus_default(&bus); |