diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-11-25 23:03:03 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-11-25 23:03:03 +0100 |
commit | 6301a98cdf26dc073f5317506c806bfa69f74cc8 (patch) | |
tree | 060b970b4a146eefd70f41dbdcf46969e04182cb /src/core/killall.h | |
parent | 0fc5ab9057def462a74af6ab374fb30213a2dbc0 (diff) |
core: fix order of parameters in broadcast_signal()
Diffstat (limited to 'src/core/killall.h')
-rw-r--r-- | src/core/killall.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/killall.h b/src/core/killall.h index bdb73e44be..986cf432cb 100644 --- a/src/core/killall.h +++ b/src/core/killall.h @@ -21,4 +21,4 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ -void broadcast_signal(int sig, bool wait, bool send_sighup); +void broadcast_signal(int sig, bool wait_for_exit, bool send_sighup); |