]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
kill: use uint64_t as type for kill_control->pidfd_ino
authorChristian Goeschel Ndjomouo <cgoesc2@wgu.edu>
Thu, 4 Dec 2025 18:35:21 +0000 (13:35 -0500)
committerChristian Goeschel Ndjomouo <cgoesc2@wgu.edu>
Thu, 4 Dec 2025 18:45:03 +0000 (13:45 -0500)
Signed-off-by: Christian Goeschel Ndjomouo <cgoesc2@wgu.edu>
misc-utils/kill.c

index 877a1c2a109633fb34dfc39854ba1f6389f521b1..4fe11d02bdf190e9b21973dbe17fb43301be957b 100644 (file)
@@ -90,10 +90,10 @@ struct timeouts {
 #endif
 
 struct kill_control {
-       char *arg;
-       pid_t pid;
-       ino_t pidfd_ino;
-       int numsig;
+       char            *arg;
+       pid_t           pid;
+       uint64_t        pidfd_ino;
+       int             numsig;
 #ifdef HAVE_SIGQUEUE
        union sigval sigdata;
 #endif