term-utils/script.c:402:19: warning: obsolete use of designated initializer without '=' [-Wpedantic] Signed-off-by: Sami Kerola <kerolasa@xxxxxx> --- term-utils/script.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/term-utils/script.c b/term-utils/script.c index 769b771..990b4a1 100644 --- a/term-utils/script.c +++ b/term-utils/script.c @@ -399,9 +399,9 @@ static void do_io(struct script_control *ctl) }; struct pollfd pfd[] = { - [POLLFD_SIGNAL] { .fd = ctl->sigfd, .events = POLLIN | POLLERR | POLLHUP }, - [POLLFD_MASTER] { .fd = ctl->master, .events = POLLIN | POLLERR | POLLHUP }, - [POLLFD_STDIN] { .fd = STDIN_FILENO, .events = POLLIN | POLLERR | POLLHUP } + [POLLFD_SIGNAL] = { .fd = ctl->sigfd, .events = POLLIN | POLLERR | POLLHUP }, + [POLLFD_MASTER] = { .fd = ctl->master, .events = POLLIN | POLLERR | POLLHUP }, + [POLLFD_STDIN] = { .fd = STDIN_FILENO, .events = POLLIN | POLLERR | POLLHUP } }; -- 2.4.4 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html