From: Christian Goeschel Ndjomouo Date: Mon, 27 Apr 2026 13:03:33 +0000 (-0400) Subject: chrt: remove redundant initializations to 0 in struct members X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=ec7b48824317f2ecbc9cdeedb2527202d7b6be67;p=thirdparty%2Futil-linux.git chrt: remove redundant initializations to 0 in struct members Signed-off-by: Christian Goeschel Ndjomouo --- diff --git a/schedutils/chrt.c b/schedutils/chrt.c index daed4589a..2be2ed9ce 100644 --- a/schedutils/chrt.c +++ b/schedutils/chrt.c @@ -425,9 +425,6 @@ static void set_sched(struct chrt_ctl *ctl) int main(int argc, char **argv) { struct chrt_ctl _ctl = { - .parse_pid = 0, - .pid = 0, - .pidfd_ino = 0, .pidfd = -1, .policy = SCHED_RR }, *ctl = &_ctl;