summaryrefslogtreecommitdiff
path: root/man/sd_bus_new.xml
diff options
context:
space:
mode:
Diffstat (limited to 'man/sd_bus_new.xml')
-rw-r--r--man/sd_bus_new.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/man/sd_bus_new.xml b/man/sd_bus_new.xml
index 41964640b6..b45106168c 100644
--- a/man/sd_bus_new.xml
+++ b/man/sd_bus_new.xml
@@ -119,8 +119,10 @@
int r;
r = sd_bus_default(&bus);
- if (r < 0)
- fprintf(stderr, "Failed to allocate bus: %s\n", strerror(-r));
+ if (r < 0) {
+ errno = -r;
+ fprintf(stderr, "Failed to allocate bus: %m\n");
+ }
}</programlisting>