diff options
author | pst <pst@FreeBSD.org> | 1998-02-27 22:36:51 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1998-02-27 22:36:51 +0000 |
commit | 41b578bc9bad5b00d00621058a76d96fef85d747 (patch) | |
tree | 8436c76b6e11e2b02c5873a15850923f6af38a7e /lib/libskey/put.c | |
parent | c2dae6a9b18521480b6a450d7ee23ee643fbca1c (diff) | |
download | FreeBSD-src-41b578bc9bad5b00d00621058a76d96fef85d747.zip FreeBSD-src-41b578bc9bad5b00d00621058a76d96fef85d747.tar.gz |
Compile under -W -Wall -Werror.
Fix API - keycrunch takes const char's, not chars.
Diffstat (limited to 'lib/libskey/put.c')
-rw-r--r-- | lib/libskey/put.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libskey/put.c b/lib/libskey/put.c index 5c9eaea..fd262a4 100644 --- a/lib/libskey/put.c +++ b/lib/libskey/put.c @@ -2107,7 +2107,8 @@ char *out; char *e; { char *word, *cp; - int i, p, v,l, low,high; + int i, v,l, low,high; + unsigned int p; char b[9]; char input[36]; |