diff options
author | obrien <obrien@FreeBSD.org> | 1998-10-26 11:54:36 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1998-10-26 11:54:36 +0000 |
commit | 9c58f68181f789e2fb43d431bb3c732e8c1c9057 (patch) | |
tree | 33b175204734fdd5418ec2f894b96dd7c1f68169 /lib/libskey/put.c | |
parent | 873d7be4840474ccc52a6f5481204058dab44ca8 (diff) | |
download | FreeBSD-src-9c58f68181f789e2fb43d431bb3c732e8c1c9057.zip FreeBSD-src-9c58f68181f789e2fb43d431bb3c732e8c1c9057.tar.gz |
Quiet many compiler warnings. Still fails -Wconversion in one case.
Required because: -Werror is in Makefile
Diffstat (limited to 'lib/libskey/put.c')
-rw-r--r-- | lib/libskey/put.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libskey/put.c b/lib/libskey/put.c index fd262a4..e57d9ca 100644 --- a/lib/libskey/put.c +++ b/lib/libskey/put.c @@ -2137,7 +2137,7 @@ char *e; standard(word); if( (v = wsrch(word,low,high)) < 0 ) return 0; - insert(b,v,p,11); + insert(b,v,(int)p,11); } /* now check the parity of what we got */ |