aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/mail/cmd3.c
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-07-06 21:01:54 +0000
committerBruce Evans <bde@FreeBSD.org>1998-07-06 21:01:54 +0000
commit22694ebad57c49178f28bcc781d8ee9eb5868dd8 (patch)
treeef3eba30b83841c253ee8676afea71ed9c896f0c /usr.bin/mail/cmd3.c
parentb45d09e830251ff82c05a1bdcd1349a94a2a5301 (diff)
downloadsrc-22694ebad57c49178f28bcc781d8ee9eb5868dd8.tar.gz
src-22694ebad57c49178f28bcc781d8ee9eb5868dd8.zip
Fixed printf format errors.
Notes
Notes: svn path=/head/; revision=37453
Diffstat (limited to 'usr.bin/mail/cmd3.c')
-rw-r--r--usr.bin/mail/cmd3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/mail/cmd3.c b/usr.bin/mail/cmd3.c
index b4d7d441bd75..04cecf6a0b30 100644
--- a/usr.bin/mail/cmd3.c
+++ b/usr.bin/mail/cmd3.c
@@ -336,7 +336,7 @@ messize(msgvec)
for (ip = msgvec; *ip != 0; ip++) {
mesg = *ip;
mp = &message[mesg-1];
- printf("%d: %d/%ld\n", mesg, mp->m_lines, mp->m_size);
+ printf("%d: %ld/%ld\n", mesg, mp->m_lines, mp->m_size);
}
return(0);
}