From 9b8660ce530031a730fd1ccb26e4a9ed8088e1a7 Mon Sep 17 00:00:00 2001 From: dt Date: Sat, 24 Apr 1999 11:29:48 +0000 Subject: Fixed printf format errors on alpha. --- sys/nfs/nfs_socket.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/nfs') diff --git a/sys/nfs/nfs_socket.c b/sys/nfs/nfs_socket.c index 8c58d00..1490f72 100644 --- a/sys/nfs/nfs_socket.c +++ b/sys/nfs/nfs_socket.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_socket.c 8.5 (Berkeley) 3/30/95 - * $Id: nfs_socket.c,v 1.49 1998/12/30 00:37:43 hoek Exp $ + * $Id: nfs_socket.c,v 1.50 1999/02/25 00:03:51 peter Exp $ */ /* @@ -589,8 +589,8 @@ tryagain: if (auio.uio_resid != sizeof (u_int32_t)) log(LOG_INFO, "short receive (%d/%d) from nfs server %s\n", - sizeof(u_int32_t) - auio.uio_resid, - sizeof(u_int32_t), + (int)(sizeof(u_int32_t) - auio.uio_resid), + (int)sizeof(u_int32_t), rep->r_nmp->nm_mountp->mnt_stat.f_mntfromname); error = EPIPE; } -- cgit v1.1