From: Zbigniew Jędrzejewski-Szmek Date: Wed, 6 Mar 2013 22:07:42 +0000 (-0500) Subject: man: fix compilation of example X-Git-Tag: v198~47 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=1d98d9a62c16c8282d02942d80e025ceec962c9b man: fix compilation of example --- diff --git a/man/sd_journal_get_fd.xml b/man/sd_journal_get_fd.xml index 189d21352..3fc9c5f5b 100644 --- a/man/sd_journal_get_fd.xml +++ b/man/sd_journal_get_fd.xml @@ -212,7 +212,7 @@ int main(int argc, char *argv[]) { return 1; } for (;;) { - const char *d; + const void *d; size_t l; r = sd_journal_next(j); if (r < 0) { @@ -233,7 +233,7 @@ int main(int argc, char *argv[]) { fprintf(stderr, "Failed to read message field: %s\n", strerror(-r)); continue; } - printf("%.*s\n", (int) l, d); + printf("%.*s\n", (int) l, (const char*) d); } sd_journal_close(j); return 0; @@ -248,9 +248,9 @@ int main(int argc, char *argv[]) { int wait_for_changes(sd_journal *j) { struct pollfd pollfd; - pollfd.fd = sd_journal_get_fd(); + pollfd.fd = sd_journal_get_fd(j); pollfd.events = POLLIN; - poll(&pollfd, 1, sd_journal_reliable_fd() > 0 ? -1 : 2000); + poll(&pollfd, 1, sd_journal_reliable_fd(j) > 0 ? -1 : 2000); return sd_journal_process(j); } diff --git a/sysctl.d/coredump.conf.in b/sysctl.d/coredump.conf.in index 5c791b791..d5795a37d 100644 --- a/sysctl.d/coredump.conf.in +++ b/sysctl.d/coredump.conf.in @@ -5,6 +5,6 @@ # the Free Software Foundation; either version 2.1 of the License, or # (at your option) any later version. -# See sysctl.d(5) for details +# See sysctl.d(5) and core(5) for for details. kernel.core_pattern=|@rootlibexecdir@/systemd-coredump %p %u %g %s %t %e