uint32_t vs. size_t pointer adjustments for LP64 build

This commit is contained in:
pooka 2007-05-12 09:41:30 +00:00
parent bb3f3ff1d6
commit c495e43bb1
2 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: psbuf.c,v 1.6 2007/05/06 10:54:56 pooka Exp $ */
/* $NetBSD: psbuf.c,v 1.7 2007/05/12 09:41:30 pooka Exp $ */
/*
* Copyright (c) 2006, 2007 Antti Kantee. All Rights Reserved.
@ -30,7 +30,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: psbuf.c,v 1.6 2007/05/06 10:54:56 pooka Exp $");
__RCSID("$NetBSD: psbuf.c,v 1.7 2007/05/12 09:41:30 pooka Exp $");
#endif /* !lint */
/*
@ -492,8 +492,8 @@ int
psbuf_do_data(struct puffs_framebuf *pb, uint8_t *data, uint32_t *dlen)
{
void *win;
size_t bufoff;
uint32_t len, dataoff, winlen;
size_t bufoff, winlen;
uint32_t len, dataoff;
if (psbuf_get_type(pb) != SSH_FXP_DATA) {
uint32_t val;

View File

@ -1,4 +1,4 @@
/* $NetBSD: psshfs.h,v 1.13 2007/05/11 16:23:01 pooka Exp $ */
/* $NetBSD: psshfs.h,v 1.14 2007/05/12 09:41:30 pooka Exp $ */
/*
* Copyright (c) 2006, 2007 Antti Kantee. All Rights Reserved.
@ -98,8 +98,8 @@ struct psshfs_node {
char *fhand_r;
char *fhand_w;
size_t fhand_r_len;
size_t fhand_w_len;
uint32_t fhand_r_len;
uint32_t fhand_w_len;
};
struct psshfs_ctx {