From ad70c5ab2ee6b5e98f46c570cb46b1939b105054 Mon Sep 17 00:00:00 2001 From: pooka Date: Tue, 27 Feb 2007 14:17:14 +0000 Subject: [PATCH] one more size_t -> uint32_t --- usr.sbin/puffs/mount_psshfs/subr.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/usr.sbin/puffs/mount_psshfs/subr.c b/usr.sbin/puffs/mount_psshfs/subr.c index 2e4a8cf9a083..92a7e9c1021d 100644 --- a/usr.sbin/puffs/mount_psshfs/subr.c +++ b/usr.sbin/puffs/mount_psshfs/subr.c @@ -1,4 +1,4 @@ -/* $NetBSD: subr.c,v 1.9 2007/02/15 13:07:29 pooka Exp $ */ +/* $NetBSD: subr.c,v 1.10 2007/02/27 14:17:14 pooka Exp $ */ /* * Copyright (c) 2006 Antti Kantee. All Rights Reserved. @@ -30,7 +30,7 @@ #include #ifndef lint -__RCSID("$NetBSD: subr.c,v 1.9 2007/02/15 13:07:29 pooka Exp $"); +__RCSID("$NetBSD: subr.c,v 1.10 2007/02/27 14:17:14 pooka Exp $"); #endif /* !lint */ #include @@ -173,9 +173,9 @@ sftp_readdir(struct puffs_cc *pcc, struct psshfs_ctx *pctx, struct psshfs_dir *olddir, *testd; struct psbuf *pb; uint32_t reqid = NEXTREQ(pctx); - uint32_t count; + uint32_t count, dhandlen; char *dhand = NULL; - size_t dhandlen, nent; + size_t nent; char *longname; int idx, rv;