diff options
author | bde <bde@FreeBSD.org> | 1998-06-28 20:42:49 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-06-28 20:42:49 +0000 |
commit | 76120f12e571cecbe542cf6b4f6fd242b66c4a43 (patch) | |
tree | c19cc371310ebb0d5c17ac28aece46871620e5af /sbin/i386 | |
parent | 4e8e4d585c351ad28b0572b154c3fa1683dccbba (diff) | |
download | FreeBSD-src-76120f12e571cecbe542cf6b4f6fd242b66c4a43.zip FreeBSD-src-76120f12e571cecbe542cf6b4f6fd242b66c4a43.tar.gz |
Fixed printf format errors.
Diffstat (limited to 'sbin/i386')
-rw-r--r-- | sbin/i386/ft/ft.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/i386/ft/ft.c b/sbin/i386/ft/ft.c index 3396eb4..3df36e5 100644 --- a/sbin/i386/ft/ft.c +++ b/sbin/i386/ft/ft.c @@ -427,7 +427,7 @@ do_write(void) /* ftfilt vol*xx yyyyyyyyyy note56789012345678 */ /* 01234567890123456789012345678901234567890123 */ - sprintf(tmpstr, "ftfilt vol%s%02d %010d %s", + sprintf(tmpstr, "ftfilt vol%s%02d %010ld %s", (tvlast) ? "*" : " ", tvno, tvsize, tvnote); strncpy(hptr->qh_tname, tmpstr, 44); UL_VAL(hptr->qh_chgdate,0) = qnow; |