diff options
| author | Topi Miettinen <topimiettinen@users.noreply.github.com> | 2019-01-15 09:12:28 +0200 |
|---|---|---|
| committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-01-15 08:12:28 +0100 |
| commit | a1e92eee3e928e33942b35f308621af0d43e91c8 (patch) | |
| tree | 7fa341b06dc2c64a1e318e661939c6f98dedbad4 /src/shared/bus-unit-util.c | |
| parent | 1c8e48f50661504e6b74a0eeaa3336f54e1e4238 (diff) | |
| download | systemd-a1e92eee3e928e33942b35f308621af0d43e91c8.tar.gz | |
Remove 'inline' attributes from static functions in .c files (#11426)
Let the compiler perform inlining (see #11397).
Diffstat (limited to 'src/shared/bus-unit-util.c')
| -rw-r--r-- | src/shared/bus-unit-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/bus-unit-util.c b/src/shared/bus-unit-util.c index dce8646f37..9a8051d063 100644 --- a/src/shared/bus-unit-util.c +++ b/src/shared/bus-unit-util.c @@ -118,7 +118,7 @@ DEFINE_BUS_APPEND_PARSE_PTR("u", uint32_t, mode_t, parse_mode); DEFINE_BUS_APPEND_PARSE_PTR("u", uint32_t, unsigned, safe_atou); DEFINE_BUS_APPEND_PARSE_PTR("x", int64_t, int64_t, safe_atoi64); -static inline int bus_append_string(sd_bus_message *m, const char *field, const char *eq) { +static int bus_append_string(sd_bus_message *m, const char *field, const char *eq) { int r; r = sd_bus_message_append(m, "(sv)", field, "s", eq); |
