tag | fc56d37bfa753f91c976c602b89dc742007d64b7 | |
---|---|---|
tagger | Lennart Poettering <lennart@poettering.net> | Thu Nov 03 12:12:30 2016 -0600 |
object | a1e2ef7ec912902d8142e7cb5830cbfb47dba86c |
systemd 232 -----BEGIN PGP SIGNATURE----- iQIcBAABAgAGBQJYG34OAAoJELY7IYecNIWwUp0P/3IdejTuIIDKahJhs43V0M/s 7zghPbjvUjUUEsCdrzpZ1i0W1D/o559YpDNsRGdKfp4+3T8AXr///GWUXoh7q0ZU 5MzQMAbAA900sntei3PPg/HXgNjN7sumSzw7WLUNqkw2H4q2kMiM7/8dz0KiVI+6 o2/mSOG9up/INXxzZmCaWBNdQOMrygPDAXH4U8rb/XN6JC7G9Ifq1HawdNv42e7s FVpGtmXoUk2Z82gWVFTifEE5su0+Hkap+i/dqV9S+TOF6luHoKBCa56Y1ycKC2WW seBbHQnv0gcP93fhfVuDFPWU+JvbtBIv/VKb6/HMFl4YQms+EqCZ4DlwFkW+SXL3 HTfEgQDpEifx/DZe/3cVkMLJgB8Ej6ZZu5DJLijnLAouDyKRcl8nwENoyKUjbH9M mV0R/kZBfP5J7qPcgA3I3px4uIWEc630jAQmhuPJNOyzLgl9F3FZJwuSaCWsFF/C EJzeG+byxmlj0roX3yrCujYafAhNMf5z3NPYJIw/NClq8hUzmFsm2Xz9lfMvUVPu g/oH+h4OQvwe+VM7f9MI1gzNunaYKmagfJ29N9oo87jUpN6S4FXZ7vClyJGFhnOH 9SswGB5vZKn2stJYcH0iMnpsjS/nbZ2KBJGCtBVoYd+DPhzCxV0TJA4QsLe8p3Rz Cdx2wNg+92mbSM7I1v0f =e9aU -----END PGP SIGNATURE-----
commit | a1e2ef7ec912902d8142e7cb5830cbfb47dba86c | [log] [download] |
---|---|---|
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | Thu Nov 03 13:16:42 2016 -0400 |
committer | GitHub <noreply@github.com> | Thu Nov 03 13:16:42 2016 -0400 |
tree | 9ba19deb6acaab9794edb3d19b235375bfdb3e60 | |
parent | c14eff367ca39b16830f76cdc90dcb70de174667 [diff] |
Revert "sd-bus: use PRIu64 instead of casting" (#4556) This reverts commit 75ead2b753cb9586f3f208326446081baab70da1. Follow up for #4546: > @@ -848,8 +848,7 @@ static int bus_kernel_make_message(sd_bus *bus, struct kdbus_msg *k) { if (k->src_id == KDBUS_SRC_ID_KERNEL) bus_message_set_sender_driver(bus, m); else { - xsprintf(m->sender_buffer, ":1.%llu", - (unsigned long long)k->src_id); + xsprintf(m->sender_buffer, ":1.%"PRIu64, k->src_id); This produces: src/libsystemd/sd-bus/bus-kernel.c: In function ‘bus_kernel_make_message’: src/libsystemd/sd-bus/bus-kernel.c:851:44: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 4 has type ‘__u64 {aka long long unsigned int}’ [-Wformat=] xsprintf(m->sender_buffer, ":1.%"PRIu64, k->src_id); ^
General information about systemd can be found in the systemd Wiki.
Information about build requirements are provided in the README file.
Consult our NEWS file for information about what's new in the most recent systemd versions.
Please see the HACKING file for information how to hack on systemd and test your modifications.
Please see our Contribution Guidelines for more information about filing GitHub Issues and posting GitHub Pull Requests.
When preparing patches for systemd, please follow our Coding Style Guidelines.
If you are looking for support, please contact our mailing list or join our IRC channel.