diff options
author | dd <dd@FreeBSD.org> | 2001-06-30 05:32:29 +0000 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2001-06-30 05:32:29 +0000 |
commit | 9b64cdc70fa0f9f7b0e46cbef338b6b1b157c739 (patch) | |
tree | 4c68a3627d7c5f2f8075b44c0cf32152ab224b84 /usr.bin/cap_mkdb | |
parent | 1de613d311a5aa0dff78a8bd951d62cc2a9645f8 (diff) | |
download | FreeBSD-src-9b64cdc70fa0f9f7b0e46cbef338b6b1b157c739.zip FreeBSD-src-9b64cdc70fa0f9f7b0e46cbef338b6b1b157c739.tar.gz |
Silence a warning on the Alpha.
Reviewed by: md5(1)
Diffstat (limited to 'usr.bin/cap_mkdb')
-rw-r--r-- | usr.bin/cap_mkdb/cap_mkdb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cap_mkdb/cap_mkdb.c b/usr.bin/cap_mkdb/cap_mkdb.c index 44a29a1b..8218316 100644 --- a/usr.bin/cap_mkdb/cap_mkdb.c +++ b/usr.bin/cap_mkdb/cap_mkdb.c @@ -177,7 +177,8 @@ db_build(ifiles) break; case 2: ((char *)(data.data))[0] = TCERR; - warnx("record not tc expanded: %.*s", p - bp, bp); + warnx("record not tc expanded: %.*s", (int)(p - bp), + bp); break; } |