aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2023-01-01 13:33:46 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-01-01 14:04:51 +0100
commitb66a3f362f9bbf6a23873b245577e87beae183d6 (patch)
tree1de8eae7047cc5c905448ff186398b84ff7677ed /utils
parent938730662dd2ec407c28380de66c3053f05e3159 (diff)
downloadhurd-b66a3f362f9bbf6a23873b245577e87beae183d6.tar.gz
hurd-b66a3f362f9bbf6a23873b245577e87beae183d6.tar.bz2
hurd-b66a3f362f9bbf6a23873b245577e87beae183d6.zip
pids: Fix pointer arithmetic
Diffstat (limited to 'utils')
-rw-r--r--utils/pids.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/pids.c b/utils/pids.c
index 44cd0b44..59646a5a 100644
--- a/utils/pids.c
+++ b/utils/pids.c
@@ -57,7 +57,7 @@ add_fn_pids (pid_t **pids, size_t *num_pids, unsigned id,
pid_t *new = realloc (*pids, new_sz * sizeof (pid_t));
if (new)
{
- bcopy (new_pids, new + (*num_pids * sizeof (pid_t)),
+ bcopy (new_pids, new + *num_pids,
num_new_pids * sizeof (pid_t));
*pids = new;
*num_pids = new_sz;