From 2af02c352da63d9cfd84e80b75c39c13e7116c25 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 8 May 2002 09:24:34 +0000 Subject: 2002-05-07 Roland McGrath * set.c (store_set_runs): Fix argument type. * kids.c (store_set_children): Likewise. --- libstore/set.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libstore/set.c b/libstore/set.c index a1682539..b9ff4f41 100644 --- a/libstore/set.c +++ b/libstore/set.c @@ -1,6 +1,6 @@ /* Setting various store fields - Copyright (C) 1995, 1996, 1997, 2001 Free Software Foundation, Inc. + Copyright (C) 1995,96,97,2001,02 Free Software Foundation, Inc. Written by Miles Bader This file is part of the GNU Hurd. @@ -28,7 +28,7 @@ /* Set STORE's current runs list to (a copy of) RUNS and NUM_RUNS. */ error_t store_set_runs (struct store *store, - const struct store_run *runs, unsigned num_runs) + const struct store_run *runs, size_t num_runs) { unsigned size = num_runs * sizeof (struct store_run); struct store_run *copy = malloc (size); -- cgit v1.2.3