1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-12-23 17:34:00 +03:00

test-exec-util: drop duplicate const

gcc-7 warns about this with -Wduplicate-decl-specifier.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2017-04-19 16:32:52 -04:00
parent 5224c2c706
commit 4fa3993be9

View File

@ -223,7 +223,7 @@ static int gather_stdout_three(int fd, void *arg) {
return 0;
}
const gather_stdout_callback_t const gather_stdout[] = {
const gather_stdout_callback_t gather_stdout[] = {
gather_stdout_one,
gather_stdout_two,
gather_stdout_three,