Fixed printf format errors on alpha.

This commit is contained in:
Dmitrij Tejblum 1999-04-24 11:29:48 +00:00
parent 0dd9741eb4
commit c1eefce941
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=45996
3 changed files with 9 additions and 9 deletions

View File

@ -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 @@ nfs_receive(rep, aname, mp)
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;
}

View File

@ -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 @@ nfs_receive(rep, aname, mp)
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;
}

View File

@ -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 @@ nfs_receive(rep, aname, mp)
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;
}