aboutsummaryrefslogtreecommitdiff
path: root/libstore
diff options
context:
space:
mode:
authorEtienne Brateau <etienne.brateau@gmail.com>2022-01-19 20:29:41 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2022-01-20 00:30:28 +0100
commitb03d5ada9d46a990e944a072ec9a1ba9e769f7bb (patch)
tree2fe83843d3dbb7f1f1401b6c8f5a0d9e9b94f0e9 /libstore
parent6fd9cd1599381115ca57786c4412e4501dda1748 (diff)
downloadhurd-b03d5ada9d46a990e944a072ec9a1ba9e769f7bb.tar.gz
hurd-b03d5ada9d46a990e944a072ec9a1ba9e769f7bb.tar.bz2
hurd-b03d5ada9d46a990e944a072ec9a1ba9e769f7bb.zip
libstore: fix type of a counter
Message-Id: <20220119192945.36654-3-etienne.brateau@gmail.com>
Diffstat (limited to 'libstore')
-rw-r--r--libstore/argp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstore/argp.c b/libstore/argp.c
index a399b48f..31bae116 100644
--- a/libstore/argp.c
+++ b/libstore/argp.c
@@ -198,7 +198,7 @@ store_parsed_open (const struct store_parsed *parsed, int flags,
return open (0, store);
else
{
- int i;
+ size_t i;
char *name;
error_t err = 0;
struct store **stores = malloc (sizeof (struct store *) * num);