diff options
author | Etienne Brateau <etienne.brateau@gmail.com> | 2022-01-19 20:29:43 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-20 00:31:32 +0100 |
commit | ee3096149e95aeea12df75fffe2bae789917b927 (patch) | |
tree | 2ee23861c5850e7a29498b38c507ccb9b5e04977 /libps/proclist.c | |
parent | 44852507c56c05e6ad45b0f99a9cd20d4ae3a2bf (diff) | |
download | hurd-ee3096149e95aeea12df75fffe2bae789917b927.tar.gz hurd-ee3096149e95aeea12df75fffe2bae789917b927.tar.bz2 hurd-ee3096149e95aeea12df75fffe2bae789917b927.zip |
libps: fix some signed vs unsigned comparision
Message-Id: <20220119192945.36654-5-etienne.brateau@gmail.com>
Diffstat (limited to 'libps/proclist.c')
-rw-r--r-- | libps/proclist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libps/proclist.c b/libps/proclist.c index 4e2174ac..c9ceaf0a 100644 --- a/libps/proclist.c +++ b/libps/proclist.c @@ -120,7 +120,7 @@ proc_stat_list_add_pids (struct proc_stat_list *pp, return err; else { - int i; + unsigned i; struct proc_stat **end = pp->proc_stats + pp->num_procs; if (proc_stats) |